File tree 5 files changed +9
-10
lines changed
5 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 9
9
max-parallel : 4
10
10
matrix :
11
11
python-version : [3.6, 3.7, 3.8]
12
- django-version : [2.2, 3.0]
12
+ django-version : [2.2, 3.0, 3.1 ]
13
13
14
14
steps :
15
15
- uses : actions/checkout@v2
21
21
run : |
22
22
python -m pip install --upgrade pip
23
23
echo "Python ${{ matrix.python-version }} -> Django ${{ matrix.django-version }}"
24
- sed -i '/Django==.*/d' ./requires .txt # delete django dependency
25
- pip install -r requires .txt
24
+ sed -i '/Django==.*/d' ./requirements .txt # delete django dependency
25
+ pip install -r requirements .txt
26
26
python -m pip install "Django~=${{ matrix.django-version }}.0"
27
27
pip install -q -e .
28
28
echo "Django: `django-admin --version`"
Original file line number Diff line number Diff line change 11
11
python-version : 3.8
12
12
- name : Generate coverage report
13
13
run : |
14
- pip install -r requires .txt
14
+ pip install -r requirements .txt
15
15
pip install coverage
16
16
pip install -q -e .
17
17
coverage run manage.py test
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -70,15 +70,16 @@ def get_version():
70
70
71
71
description = 'Django application for image assets management' ,
72
72
install_requires = [
73
- 'Django' ,
74
- 'Pillow' ,
75
- 'django-bitfield' ,
73
+ 'Django>=2.2,<3.2 ' ,
74
+ 'Pillow~=7.0 ' ,
75
+ 'django-bitfield~=2.0 ' ,
76
76
],
77
77
classifiers = [
78
- 'Development Status :: 1 - Planning ' ,
78
+ 'Development Status :: 4 - Beta ' ,
79
79
'Environment :: Console' ,
80
80
'Framework :: Django :: 2.2' ,
81
81
'Framework :: Django :: 3.0' ,
82
+ 'Framework :: Django :: 3.1' ,
82
83
'Operating System :: POSIX' ,
83
84
'Programming Language :: Python :: 3.6' ,
84
85
'Programming Language :: Python :: 3.7' ,
You can’t perform that action at this time.
0 commit comments