Skip to content

Commit

Permalink
fix tox python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jannik Eilers committed Jun 10, 2024
1 parent 5831251 commit 1d19bbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: dev workflow

# Controls when the action will run.
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
Expand All @@ -20,7 +20,7 @@ jobs:
# The type of runner that the job will run on
strategy:
matrix:
python-versions: [3.6, 3.7, 3.8, 3.9]
python-versions: [3.8, 3.9, '3.10', 3.11, 3.12]
os: [ubuntu-18.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.md.
3. The pull request should work for Python 3.6, 3.7, 3.8, 3.9 and for PyPy. Check
3. The pull request should work for Python 3.8, 3.9, 3.10, 3.11, 3.12 and for PyPy. Check
https://github.com/jwaschkau/django-unpoly/actions
and make sure that the tests pass for all supported Python versions.

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
isolated_build = true
envlist = py36, py37, py38, py39, lint, format
envlist = py38, py39, py310, py311, py312, lint, format

[gh-actions]
python =
Expand Down

0 comments on commit 1d19bbf

Please sign in to comment.