Skip to content

Commit

Permalink
Merge pull request #279 from hugovk/add-3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmayer committed Jan 29, 2024
2 parents 083723b + 0bf3d19 commit d7022cc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
python: 3.8

# Latest Python & Pytest
- toxenv: py311-pytest_latest-supported-xdist
python: 3.11
- toxenv: py312-pytest_latest-supported-xdist
python: 3.12

# QA
- toxenv: qa
python: 3.8
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
Expand All @@ -48,10 +48,10 @@ jobs:
if: github.ref=='refs/heads/main' && github.event_name!='pull_request'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"

Expand Down
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[bdist_wheel]
universal = 1

[flake8]
max-line-length = 88
extend-ignore = E203
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ def get_version(filename):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy",
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.14.0
envlist = py{38,311,py}-pytest_latest-supported-xdist
envlist = py{38,312,py}-pytest_latest-supported-xdist
qa
requires = virtualenv>=20.0.31

Expand Down

0 comments on commit d7022cc

Please sign in to comment.