Skip to content

Commit

Permalink
build: require python 3.12, stop testing on 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
infinitewarp committed Oct 18, 2024
1 parent 360ec8e commit a28da19
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
python-version: ["3.12"] # Expand like ["3.12", "3.13"] to test more versions.
type:
[
config-verify,
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "qpc"
version = "1.10.0"
license = {file = "LICENSE"}
requires-python = ">=3.11,<3.13"
requires-python = ">=3.12,<3.13"
dynamic = ["scripts"]

[tool.poetry]
Expand All @@ -23,7 +23,7 @@ exclude = [
qpc = 'qpc.__main__:main'

[tool.poetry.dependencies]
python = ">=3.11,<3.13"
python = ">=3.12,<3.13"
requests = ">=2.28.1"
cryptography = ">=37.0.4"
setuptools = "^70.0.0"
Expand Down

0 comments on commit a28da19

Please sign in to comment.