Skip to content

Commit ac8f5a3

Browse files
committed
bump tox python and django version
1 parent 3ddabbb commit ac8f5a3

2 files changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.10", "3.11", "3.12"]
1313

1414
steps:
1515
- uses: actions/checkout@v1

tox.ini

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ isolated_build = true
33
skip_missing_interpreters = true
44
parallel_show_output = true
55
envlist =
6-
py{38,39,310}-dj{32,40,41,42}
6+
py{310,311,312}-dj{42}
77

88
[pytest]
99
testpaths = test
@@ -27,16 +27,13 @@ commands =
2727
deps =
2828
pytest
2929
pytest-django
30-
dj32: Django>=3.2.11,<4.0
31-
dj40: Django>=4.0.1,<4.1
32-
dj41: Django>=4.1.0,<4.2
3330
dj42: Django>=4.2.0,<5.0
3431

3532
[testenv:pep8]
3633
description = Run flake8 against the source code
3734
skipsdist = true
3835
skip_install = true
39-
basepython = python3.8
36+
basepython = python3.12
4037
deps = flake8
4138
commands = flake8 src/travel test demo
4239

@@ -64,7 +61,7 @@ commands =
6461

6562
[testenv:coverage]
6663
description = Run test coverage and display results
67-
basepython = python3.8
64+
basepython = python3.12
6865
deps =
6966
{[testenv]deps}
7067
coverage
@@ -78,7 +75,6 @@ commands =
7875

7976
[gh-actions]
8077
python =
81-
3.8: py38
82-
3.9: py39
8378
3.10: py310
8479
3.11: py311
80+
3.12: py312

0 commit comments

Comments
 (0)