File tree 5 files changed +13
-9
lines changed
5 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ name: Python CI
3
3
on :
4
4
push :
5
5
branches :
6
- - master
6
+ - master
7
7
pull_request :
8
8
branches :
9
- - ' **'
9
+ - ' **'
10
10
11
11
jobs :
12
12
run_tests :
15
15
strategy :
16
16
matrix :
17
17
os :
18
- - ubuntu-20.04
19
- python-version : [3.8 ]
20
- toxenv : [django32, django42]
18
+ - ubuntu-20.04
19
+ python-version : [' 3.8', '3.11' ]
20
+ toxenv : [django42]
21
21
22
22
steps :
23
23
- uses : actions/checkout@v3
Original file line number Diff line number Diff line change 1
1
django-require changelog
2
2
========================
3
3
4
+ 2.2.0 - 09/04/2024
5
+ -------------------
6
+
7
+ * Support added for python3.11. Dropped support for django32.
8
+ *
4
9
2.1.0 - 20/07/2023
5
10
-------------------
6
11
Original file line number Diff line number Diff line change 7
7
"""
8
8
9
9
10
- __version__ = (2 , 1 , 0 )
10
+ __version__ = (2 , 2 , 0 )
Original file line number Diff line number Diff line change 31
31
"Development Status :: 5 - Production/Stable" ,
32
32
"Environment :: Web Environment" ,
33
33
"Framework :: Django" ,
34
- "Framework :: Django :: 3.2" ,
35
34
"Framework :: Django :: 4.2" ,
36
35
"Intended Audience :: Developers" ,
37
36
"License :: OSI Approved :: BSD License" ,
38
37
"Operating System :: OS Independent" ,
39
38
"Programming Language :: Python" ,
40
39
"Programming Language :: Python :: 3.8" ,
40
+ "Programming Language :: Python :: 3.11" ,
41
41
"Topic :: Internet :: WWW/HTTP" ,
42
42
],
43
43
)
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
- py38-django{32, 42}
3
+ py{38, 311}-django{ 42}
4
4
5
5
[testenv]
6
6
changedir = {envtmpdir}
@@ -9,7 +9,6 @@ basepython =
9
9
commands =
10
10
coverage run --rcfile ={toxinidir}/.coveragerc {toxinidir}/test_project/manage.py test --settings =test_project.settings require -v 2
11
11
deps =
12
- django32: Django>=3.2,<4.0
13
12
django42: Django>=4.2,<4.3
14
13
tox>=2.0.0
15
14
coverage
You can’t perform that action at this time.
0 commit comments