Skip to content

Commit

Permalink
python3.12 testing/support
Browse files Browse the repository at this point in the history
minimum version specified in pyproject.toml is now python3.7
  • Loading branch information
jacob-thompson committed Aug 15, 2024
1 parent 04bdef4 commit 672aa23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ DEFAULT: run
clean:
rm -rf dist .tox
build: clean
python3 -m build
python -m build
install: build
pipx install dist/*.tar.gz --force
run: install
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = ["pygame"]
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, 311}
minversion = 3.3.0
envlist = py{37, 38, 39, 310, 311, 312}
minversion = 3.7.0
isolated_build = true

[testenv]
Expand Down

0 comments on commit 672aa23

Please sign in to comment.