Skip to content

Commit 0809f24

Browse files
committed
remove all references to 3.6
1 parent 18b02ce commit 0809f24

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version:
17-
- '3.6'
1817
- '3.7'
1918
- '3.8'
2019
- '3.9'
@@ -36,18 +35,9 @@ jobs:
3635
- name: Install dependencies
3736
run: python -m pip install --upgrade codecov tox
3837

39-
- name: Install tox-py
40-
if: ${{ matrix.python-version == '3.6' }}
41-
run: python -m pip install --upgrade tox-py
42-
4338
- name: Run tox targets for ${{ matrix.python-version }}
44-
if: ${{ matrix.python-version != '3.6' }}
4539
run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)
4640

47-
- name: Run tox targets for ${{ matrix.python-version }}
48-
if: ${{ matrix.python-version == '3.6' }}
49-
run: tox --py current
50-
5141
- name: Run extra tox targets
5242
if: ${{ matrix.python-version == '3.9' }}
5343
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ There is a live example API for testing purposes, [available here][sandbox].
5454

5555
# Requirements
5656

57-
* Python 3.6+
57+
* Python 3.7+
5858
* Django 4.2, 4.1, 4.0, 3.2, 3.1, 3.0
5959

6060
We **highly recommend** and only officially support the latest patch release of

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ continued development by **[signing up for a paid plan][funding]**.
8585

8686
REST framework requires the following:
8787

88-
* Python (3.6, 3.7, 3.8, 3.9, 3.10, 3.11)
88+
* Python (3.7, 3.8, 3.9, 3.10, 3.11)
8989
* Django (3.0, 3.1, 3.2, 4.0, 4.1, 4.2)
9090

9191
We **highly recommend** and only officially support the latest patch release of

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from setuptools import find_packages, setup
99

1010
CURRENT_PYTHON = sys.version_info[:2]
11-
REQUIRED_PYTHON = (3, 6)
11+
REQUIRED_PYTHON = (3, 7)
1212

1313
# This check and everything above must remain compatible with Python 2.7.
1414
if CURRENT_PYTHON < REQUIRED_PYTHON:
@@ -84,7 +84,7 @@ def get_version(package):
8484
packages=find_packages(exclude=['tests*']),
8585
include_package_data=True,
8686
install_requires=["django>=3.0", 'backports.zoneinfo;python_version<"3.9"'],
87-
python_requires=">=3.6",
87+
python_requires=">=3.7",
8888
zip_safe=False,
8989
classifiers=[
9090
'Development Status :: 5 - Production/Stable',
@@ -101,7 +101,6 @@ def get_version(package):
101101
'Operating System :: OS Independent',
102102
'Programming Language :: Python',
103103
'Programming Language :: Python :: 3',
104-
'Programming Language :: Python :: 3.6',
105104
'Programming Language :: Python :: 3.7',
106105
'Programming Language :: Python :: 3.8',
107106
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)