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

Upgrade python & django #58

Merged
merged 7 commits into from
May 16, 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
Next Next commit
Removed deprecated versions
ronardcaktus committed Sep 26, 2023
commit f9c83c3134cf92d06b3e3bfc0cde8d1fd8e44f59
44 changes: 11 additions & 33 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -12,44 +12,22 @@ jobs:
fail-fast: false
matrix:
versions:
- python: 3.5
toxenv: py35-2.2.X
- python: 3.6
toxenv: py36-2.2.X
- python: 3.7
toxenv: py37-2.2.X
- python: 3.8
toxenv: py38-2.2.X
- python: 3.9
toxenv: py39-2.2.X

- python: 3.6
toxenv: py36-3.0.X
- python: 3.7
toxenv: py37-3.0.X
- python: 3.8
toxenv: py38-3.0.X
- python: 3.9
toxenv: py39-3.0.X

- python: 3.6
toxenv: py36-3.1.X
- python: 3.7
toxenv: py37-3.1.X
toxenv: py38-3.2.X
- python: 3.8
toxenv: py38-3.1.X
- python: 3.9
toxenv: py39-3.1.X

- python: 3.6
toxenv: py36-3.2.X
- python: 3.7
toxenv: py37-3.2.X
toxenv: py38-4.0.X
- python: 3.8
toxenv: py38-3.2.X
toxenv: py38-4.2.X

- python: 3.9
toxenv: py39-3.2.X

- python: 3.9
toxenv: py39-4.0.X
- python: 3.9
toxenv: py39-4.2.X

- python: 3.10
toxenv: py310-3.2.X
- python: 3.10
toxenv: py310-4.0.X
- python: 3.10
11 changes: 1 addition & 10 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
[tox]
envlist =
flake8
{py35,py36,py37,py38,py39}-2.2.X
{py36,py37,py38,py39}-3.0.X
{py36,py37,py38,py39}-3.1.X
{py36,py37,py38,py39}-3.2.X
{py38,py39,py310}-3.2.X
{py38,py39,py310}-4.0.X
{py38,py39,py310}-4.1.X
{py38,py39,py310}-4.2.X

[testenv]
allowlist_externals=./run.sh
basepython =
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
py39: python3.9
py10: python3.10
@@ -26,9 +20,6 @@ commands =
pip freeze

deps =
2.2.X: Django>=2.2,<2.3
3.0.X: Django>=3.0,<3.1
3.1.X: Django>=3.1,<3.2
3.2.X: Django>=3.2,<4.0
4.0.X: Django>=4.0,<4.1
4.1.X: Django>=4.1,<4.2