File tree 2 files changed +5
-18
lines changed
2 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -82,25 +82,15 @@ jobs:
82
82
strategy :
83
83
matrix :
84
84
python-version :
85
- - " 3.7"
86
85
- " 3.8"
87
86
- " 3.9"
88
- - " 3.10"
87
+ - " 3.10"
89
88
django-version :
90
- - " 2.2.*"
91
- - " 3.1.*"
92
- - " 3.2.*"
93
- - " 4.0.*"
89
+ - " 3.2a"
90
+ - " 4.0a"
94
91
extra :
95
92
- " "
96
93
- " progressbar"
97
- exclude :
98
- - python-version : " 3.7"
99
- django-version : " 4.0.*"
100
- - python-version : " 3.10"
101
- django-version : " 3.1.*"
102
- - python-version : " 3.10"
103
- django-version : " 2.2.*"
104
94
steps :
105
95
- name : Set up Python ${{ matrix.python-version }}
106
96
uses : actions/setup-python@v3
@@ -111,7 +101,7 @@ jobs:
111
101
- run : python -m pip install --upgrade pip setuptools codecov wheel
112
102
- run : python -m pip install .[${{ matrix.extra }}]
113
103
if : ${{ matrix.extra }}
114
- - run : python -m pip install django= =${{ matrix.django-version }}
104
+ - run : python -m pip install django~ =${{ matrix.django-version }}
115
105
- name : Test with pytest
116
106
run : python setup.py test
117
107
- run : codecov
Original file line number Diff line number Diff line change @@ -20,17 +20,14 @@ classifier =
20
20
Topic :: Software Development
21
21
Programming Language :: Python :: 3
22
22
Programming Language :: Python :: 3 :: Only
23
- Programming Language :: Python :: 3.7
24
23
Programming Language :: Python :: 3.8
25
24
Programming Language :: Python :: 3.9
26
25
Programming Language :: Python :: 3.10
27
26
Framework :: Django
28
- Framework :: Django :: 2.2
29
- Framework :: Django :: 3.1
30
27
Framework :: Django :: 3.2
31
28
Framework :: Django :: 4.0
32
29
33
- python_requires = >=3.7
30
+ python_requires = >=3.8
34
31
35
32
[options]
36
33
include_package_data = True
You can’t perform that action at this time.
0 commit comments