File tree 3 files changed +8
-12
lines changed
3 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -54,14 +54,12 @@ jobs:
54
54
strategy :
55
55
matrix :
56
56
python-version :
57
- - " 3.7"
58
57
- " 3.8"
59
58
- " 3.9"
59
+ - " 3.10"
60
60
django-version :
61
- - " 2.2.0"
62
- - " 3.1.0"
63
- - " 3.2.0"
64
-
61
+ - " 3.2a"
62
+ - " 4.0a"
65
63
steps :
66
64
- name : Set up Python ${{ matrix.python-version }}
67
65
uses : actions/setup-python@v3
70
68
- uses : actions/checkout@v3
71
69
- name : Upgrade Python setuptools
72
70
run : python -m pip install --upgrade pip setuptools wheel codecov
71
+ - run : python setup.py develop
73
72
- name : Install Django ${{ matrix.django-version }}
74
73
run : python -m pip install "django~=${{ matrix.django-version }}"
75
- - run : python setup.py develop
76
74
- name : Run tests
77
75
run : python setup.py test
78
76
- run : codecov
Original file line number Diff line number Diff line change @@ -15,22 +15,22 @@ classifier =
15
15
License :: OSI Approved :: MIT License
16
16
Operating System :: OS Independent
17
17
Framework :: Django
18
- Framework :: Django :: 2.2
19
- Framework :: Django :: 3.1
20
18
Framework :: Django :: 3.2
19
+ Framework :: Django :: 4.0
21
20
Programming Language :: Python
22
21
Programming Language :: Python :: 3
23
- Programming Language :: Python :: 3.7
22
+ Programming Language :: Python :: 3 :: Only
24
23
Programming Language :: Python :: 3.8
25
24
Programming Language :: Python :: 3.9
25
+ Programming Language :: Python :: 3.10
26
26
keywords =
27
27
django
28
28
django-storages
29
29
file
30
30
31
31
[options]
32
32
install_requires =
33
- django>=2 .2
33
+ django>=3 .2
34
34
setup_requires =
35
35
setuptools_scm
36
36
pytest-runner
Original file line number Diff line number Diff line change 112
112
113
113
USE_I18N = True
114
114
115
- USE_L10N = True
116
-
117
115
USE_TZ = True
118
116
119
117
You can’t perform that action at this time.
0 commit comments