Skip to content

Commit

Permalink
remove python3.10 from the fix_tests_and_build
Browse files Browse the repository at this point in the history
since typing.Self was introduced in 3.11 not going to deal with
backports
  • Loading branch information
mcgillij committed Jul 7, 2024
1 parent 1de3738 commit 80683d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.10 || ^3.11 || ^3.12"
numpy = "^1.23.5"
python = "^3.11 || ^3.12"
numpy = "^2.0.0"
pyyaml = "^6.0"
click = "^8.1.3"
rich = "^13.0.0"
Expand Down

0 comments on commit 80683d8

Please sign in to comment.