mirror of
https://github.com/python-poetry/install.python-poetry.org.git
synced 2024-11-05 21:55:51 -05:00
Test against python 3.11 and remove obsolete code-quality
workflow (#14)
* chore(ci): remove obsolete `code-quality` workflow * chore(ci): test against Python 3.11 * chore(ci): use `1.1.13` for Poetry version to install * chore(ci): bump actions * chore(pre-commit): pin `flake8-bugbear` * chore(pre-commit): remove unneeeded `toml` extra for `isort` * chore(isort): remove options already in `black` profile
This commit is contained in:
parent
0fab381034
commit
9804ea2fb8
4 changed files with 6 additions and 23 deletions
15
.github/workflows/code-quality.yaml
vendored
15
.github/workflows/code-quality.yaml
vendored
|
@ -1,15 +0,0 @@
|
||||||
name: Code Quality
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
pre-commit:
|
|
||||||
name: Linting
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: actions/setup-python@v2
|
|
||||||
- uses: pre-commit/action@v2.0.0
|
|
8
.github/workflows/installer.yml
vendored
8
.github/workflows/installer.yml
vendored
|
@ -25,12 +25,12 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [Ubuntu, macOS, Windows]
|
os: [Ubuntu, macOS, Windows]
|
||||||
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
|
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11-dev"]
|
||||||
args:
|
args:
|
||||||
- ""
|
- ""
|
||||||
- "--preview"
|
- "--preview"
|
||||||
- "--git https://github.com/python-poetry/poetry.git"
|
- "--git https://github.com/python-poetry/poetry.git"
|
||||||
- "--version 1.1.11"
|
- "--version 1.1.13"
|
||||||
include:
|
include:
|
||||||
- os: Ubuntu
|
- os: Ubuntu
|
||||||
image: ubuntu-latest
|
image: ubuntu-latest
|
||||||
|
@ -42,10 +42,10 @@ jobs:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v3
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
|
|
@ -8,13 +8,13 @@ repos:
|
||||||
rev: 4.0.1
|
rev: 4.0.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: flake8
|
||||||
additional_dependencies: [flake8-bugbear]
|
additional_dependencies:
|
||||||
|
- flake8-bugbear==22.4.25
|
||||||
|
|
||||||
- repo: https://github.com/PyCQA/isort
|
- repo: https://github.com/PyCQA/isort
|
||||||
rev: 5.10.1
|
rev: 5.10.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: isort
|
- id: isort
|
||||||
additional_dependencies: [toml]
|
|
||||||
|
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.2.0
|
rev: v4.2.0
|
||||||
|
|
|
@ -2,10 +2,8 @@
|
||||||
profile = "black"
|
profile = "black"
|
||||||
force_single_line = true
|
force_single_line = true
|
||||||
atomic = true
|
atomic = true
|
||||||
include_trailing_comma = true
|
|
||||||
lines_after_imports = 2
|
lines_after_imports = 2
|
||||||
lines_between_types = 1
|
lines_between_types = 1
|
||||||
use_parentheses = true
|
|
||||||
filter_files = true
|
filter_files = true
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue