File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
- uses : actions/setup-python@v4
15
15
with :
16
- python-version : " 3.10 "
16
+ python-version : " 3.x "
17
17
- uses : actions/checkout@v3
18
18
- run : python -m pip install --upgrade pip build wheel twine
19
19
- run : python -m build --sdist --wheel
51
51
- uses : actions/checkout@v3
52
52
- uses : actions/setup-python@v4
53
53
with :
54
- python-version : " 3.10 "
54
+ python-version : " 3.x "
55
55
cache : ' pip'
56
56
cache-dependency-path : ' linter-requirements.txt'
57
57
- run : python -m pip install -r linter-requirements.txt
@@ -66,12 +66,13 @@ jobs:
66
66
strategy :
67
67
matrix :
68
68
python-version :
69
- - " 3.8"
70
69
- " 3.9"
71
70
- " 3.10"
71
+ - " 3.11"
72
72
django-version :
73
73
- " 3.2"
74
74
- " 4.0"
75
+ - " 4.1"
75
76
steps :
76
77
- uses : actions/checkout@v3
77
78
- name : Set up Python ${{ matrix.python-version }}
90
91
unzip chromedriver_linux64.zip -d bin
91
92
92
93
- run : python -m pip install .[test] codecov
93
- - run : python -m pip install django~=${{ matrix.django-version }}
94
+ - run : python -m pip install django~=${{ matrix.django-version }}.0
94
95
- run : python -m pytest
95
96
env :
96
97
PATH : $PATH:$(pwd)/bin
Original file line number Diff line number Diff line change 12
12
- uses : actions/checkout@v3
13
13
- uses : actions/setup-python@v4
14
14
with :
15
- python-version : " 3.10 "
15
+ python-version : " 3.x "
16
16
- run : python -m pip install --upgrade pip build wheel twine
17
17
- uses : actions/setup-node@v3
18
18
- name : Install Node dependencies
Original file line number Diff line number Diff line change @@ -21,14 +21,15 @@ classifiers = [
21
21
" Topic :: Software Development" ,
22
22
" Programming Language :: Python :: 3" ,
23
23
" Programming Language :: Python :: 3 :: Only" ,
24
- " Programming Language :: Python :: 3.8" ,
25
24
" Programming Language :: Python :: 3.9" ,
26
25
" Programming Language :: Python :: 3.10" ,
26
+ " Programming Language :: Python :: 3.11" ,
27
27
" Framework :: Django" ,
28
28
" Framework :: Django :: 3.2" ,
29
29
" Framework :: Django :: 4.0" ,
30
+ " Framework :: Django :: 4.1" ,
30
31
]
31
- requires-python = " >=3.8 "
32
+ requires-python = " >=3.9 "
32
33
dependencies = [
33
34
" django>=2.0" ,
34
35
" django-storages" ,
You can’t perform that action at this time.
0 commit comments