Skip to content

Commit

Permalink
Drop support of Py37 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien-berchet authored Nov 14, 2023
1 parent aef37f1 commit ce1329c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.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.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"allensdk",
],
},
python_requires=">=3.7",
python_requires=">=3.8",
packages=find_namespace_packages(
exclude=("Installation", "Meshes", "Metadata", "Screenshots")
),
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37,38,39,310}
py{38,39,310,311}

[testenv]
extras =
Expand All @@ -20,7 +20,7 @@ commands = pytest \

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311

0 comments on commit ce1329c

Please sign in to comment.