Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ci): add current django and python to test #321

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat(ci): add django5.0; add python3.12; remove eol django4.1
Rotzbua committed Dec 10, 2023
commit 18b4775153f1c4754474664f85750c96c8e01942
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ 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@v4
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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?
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -3,8 +3,8 @@ envlist =
isort,
flake8,
py{36,37,38,39,310}-django32,
py{38,39,310,311}-django41,
py{38,39,310,311}-django42,
py{38,39,310,311,312}-django42,
py{310,311,312}-django50,

[testenv:flake8]
deps = flake8
@@ -30,8 +30,8 @@ setenv =
PIP_INDEX_URL = https://pypi.python.org/simple/
deps =
django32: Django>=3.2,<3.3
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