Skip to content

Commit

Permalink
build: require python>=3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Jun 4, 2024
1 parent c975294 commit 979955d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Test with pytest
run: |
make test
deploy:
needs:
# - cqa
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ authors = [
description = "SeqRepo REST Service"
readme = "README.md"
license = { file="LICENSE.txt" }
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[tox]
envlist = py39,py310
envlist = py310,py311,py312
isolated_build = True

[gh]
python =
3.9 = py39, type
3.10 = py310
3.11 = py311
3.12 = py312

0 comments on commit 979955d

Please sign in to comment.