Skip to content

Commit

Permalink
Merge branch 'main' into pre-distribution-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
reece committed Jul 6, 2024
2 parents 0f68772 + 4b53543 commit 16511f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,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 Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Install pre-commit hook:
Test:

make test # for current environment
make tox # for Python 3.9 and Python 3.10
make tox # for Python 3.10, Python 3.11, Python 3.12

Build:

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 = "Example Package"
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
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[tox]
requires =
tox >= 4
env_list = py{39,310,311,312}
env_list = py{310,311,312}
isolated_build = True

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

0 comments on commit 16511f2

Please sign in to comment.