Skip to content

Commit

Permalink
build: require python>=3.10 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Jul 11, 2024
1 parent 5013e7f commit b6a3fab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .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:
- name: Install packages
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ authors = [
description = "Non-redundant, compressed, journalled, file-based storage for biological sequences"
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 :: Apache Software License",
"Operating System :: OS Independent",
]
Expand All @@ -24,6 +24,7 @@ dependencies = [
"requests ~= 2.31",
"tqdm ~= 4.66",
"yoyo-migrations ~= 8.2",
"setuptools", # pin until yoyo-migrations doesn't use pkg_resources
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38
envlist = py310,py311,py312

[testenv]
commands =
Expand Down

0 comments on commit b6a3fab

Please sign in to comment.