Skip to content

Commit

Permalink
ci: Test on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 10, 2023
1 parent bc24f62 commit 18f65ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
{%- if cookiecutter.os_independent == "y" %}
os: [macos-latest, windows-latest, ubuntu-latest]
{%- endif %}
python-version: [3.7, 3.8, 3.9, '3.10', '3.11'{% if cookiecutter.pypy == "y" %}, pypy-3.9{% endif %}]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12'{% if cookiecutter.pypy == "y" %}, pypy-3.9{% endif %}]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ classifiers =
{%- else %}
Operating System :: POSIX :: Linux
{%- endif %}
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
{%- if cookiecutter.pypy == "y" %}
Programming Language :: Python :: Implementation :: PyPy
Expand Down
2 changes: 1 addition & 1 deletion docs/python/samples/ci/package-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', pypy-3.9]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', pypy-3.9]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
Expand Down

0 comments on commit 18f65ca

Please sign in to comment.