Skip to content

Commit

Permalink
Merge pull request #321 from Rotzbua/feat_gh_django5
Browse files Browse the repository at this point in the history
feat(ci): add current django and python to test
  • Loading branch information
dekkers authored Jan 12, 2024
2 parents d996f3e + 18b4775 commit dd7b062
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

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

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],

# What does your project relate to?
Expand Down
13 changes: 7 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ envlist =
isort,
flake8,
py{36,37,38,39,310}-django32,
py{38,39,310}-django40,
py{38,39,310,311}-django41,
py{38,39,310,311,312}-django42,
py{310,311,312}-django50,

[testenv:flake8]
deps = flake8
Expand All @@ -30,8 +30,8 @@ setenv =
PIP_INDEX_URL = https://pypi.python.org/simple/
deps =
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django41: Django>=4.1.3,<4.2
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
markdown>=3.0
isort>=5.0
djangorestframework
Expand All @@ -49,5 +49,6 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310, isort, flake8
3.11: py311
3.10: py310
3.11: py311, isort, flake8
3.12: py312

0 comments on commit dd7b062

Please sign in to comment.