Skip to content

Commit

Permalink
Add support for python 3.12, drop python 3.8 (#346)
Browse files Browse the repository at this point in the history
* Add support for python 3.12

* Drop support for python 3.9

* Bump flake8 and pylint
  • Loading branch information
connortann committed Feb 13, 2024
1 parent ffbd359 commit f064594
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.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.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ classifiers = [
license = "Apache License 2.0"

[tool.poetry.dependencies]
python = ">=3.8, <3.12"
python = ">=3.9, <3.13"
scikit-learn = ">=1.0.2"
numpy = ">=1.21.2"
scipy = ">=1.7.2"
Expand All @@ -25,8 +25,8 @@ pytest = "^6.1.2"
black = "^22.8.0"
pre-commit = "^2.0"
isort = "^5.6.4"
pylint = "^2.6.0"
flake8 = "^5.0.4"
pylint = "^3.0.3"
flake8 = "^7.0.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit f064594

Please sign in to comment.