Skip to content

Commit

Permalink
Merge pull request #211 from hugovk/test-3.12-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored May 27, 2023
2 parents 1d14e95 + 9c927d3 commit dbd83d8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 6
max-parallel: 7
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.8']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12-dev', 'pypy-3.8']

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def test_suite():


major_version, minor_version = sys.version_info[:2]
if not (major_version == 3 and 7 <= minor_version <= 11):
sys.stderr.write("Sorry, only Python 3.7 - 3.11 are "
if not (major_version == 3 and 7 <= minor_version <= 12):
sys.stderr.write("Sorry, only Python 3.7 - 3.12 are "
"supported at this time.\n")
exit(1)

Expand All @@ -48,7 +48,7 @@ def test_suite():
package_data={"geojson": ["*.rst"]},
install_requires=[],
test_suite="setup.test_suite",
python_requires=">=3.7, <3.12",
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py{36,37,38,39,310}, pypy3
envlist = py{py3, 312, 311, 310, 39, 38, 37}

[testenv]
commands = {envpython} setup.py test

0 comments on commit dbd83d8

Please sign in to comment.