Skip to content

Commit dff27c0

Browse files
committed
Enable Python 3.4 support for Django 1.11
1 parent cbdb1d4 commit dff27c0

2 files changed

Lines changed: 3 additions & 15 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,6 @@ jobs:
6666
with:
6767
python-version: ${{ matrix.python }}
6868

69-
- name: Get pip cache dir
70-
id: pip-cache
71-
run: echo "::set-output name=dir::$(python -m pip cache dir)"
72-
73-
- name: Set up pip cache
74-
uses: actions/cache@v2.1.6
75-
with:
76-
path: ${{ steps.pip-cache.outputs.dir }}
77-
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
78-
restore-keys: |
79-
${{ runner.os }}-pip-
80-
8169
- name: Install dependencies
8270
run: |
8371
python -m pip install --upgrade pip

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ def get_version_string():
167167
EXTRAS_REQUIRE = {
168168
# Dependencies that are required to run tests
169169
'testing': [
170-
'coverage[toml]>=5.4', # Code coverage measurement for Python
171-
'pytest>=6.1.2', # Our tests framework (6.1.2 due to python 3.5)
170+
'coverage[toml]>=5.0a4', # Code coverage measurement for Python
171+
'pytest>=4.6.11', # Our tests framework
172172
],
173173
# Dependencies that are required to build documentation
174174
'docs': [
@@ -214,7 +214,7 @@ def get_version_string():
214214
platforms=['any'],
215215
include_package_data=True,
216216
zip_safe=False,
217-
python_requires='>=3, <4',
217+
python_requires='>=3.4,<4',
218218
install_requires=INSTALL_REQUIRES,
219219
dependency_links=DEPENDENCY_LINKS,
220220
extras_require=EXTRAS_REQUIRE,

0 commit comments

Comments
 (0)