Skip to content

Commit

Permalink
ci: fix Python 3.12 upgrade with copier-update
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleKing committed Mar 27, 2024
1 parent ac51257 commit e99dabe
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
ignore = E501,F401,PIE786,W503
max-function-length = 55
max-line-length = 120
min-python-version = 3.11
min-python-version = 3.12
per-file-ignores=
# Enforcing beartype on @nox_session doesn't make sense
*noxfile.py:RBT001,
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand All @@ -37,7 +37,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest]
python-version: ["3.11"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand All @@ -53,7 +53,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .mypy.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Global options:

[mypy]
python_version = 3.11
python_version = 3.12

check_untyped_defs = True
disallow_any_decorated = False
Expand Down
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
enable-all-extensions=yes
fail-under=8
ignore=tests
py-version=3.11
py-version=3.12
suggestion-mode=yes

load-plugins=
Expand Down
2 changes: 1 addition & 1 deletion .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Tip: poetry run python -m ruff --explain RUF100

line-length = 120
target-version = 'py311'
target-version = 'py312'

[lint]
external = [
Expand Down

0 comments on commit e99dabe

Please sign in to comment.