Skip to content

Commit

Permalink
Merge pull request #159 from jonafato/tox-python-versions
Browse files Browse the repository at this point in the history
Update tox envlist
  • Loading branch information
awdeorio authored Mar 8, 2024
2 parents 349a192 + cabceed commit 8b3024a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
# Define OS and Python versions to use. 3.x is the latest minor version.
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.x"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.x"]
os: [ubuntu-latest]

# Sequence of tasks for this job
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Local host configuration with one Python 3 version
[tox]
envlist = py36, py37, py38, py39, py310
envlist = py38, py39, py310, py311, py312

# GitHub Actions configuration with multiple Python versions
# https://github.com/ymyzk/tox-gh-actions#tox-gh-actions-configuration
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312

# Run unit tests
# HACK: Pydocstyle fails to find tests. Invoke a shell to use a glob.
Expand Down

0 comments on commit 8b3024a

Please sign in to comment.