Skip to content

Commit c09d185

Browse files
authored
remove support for 3.6 (#204)
1 parent 8f6c716 commit c09d185

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
name: "Python ${{ matrix.python-version }} on Ubuntu"
1515
runs-on: "ubuntu-latest"
1616
env:
17-
USING_COVERAGE: '3.6,3.7,3.8,3.9'
17+
USING_COVERAGE: '3.7,3.8,3.9'
1818
strategy:
1919
matrix:
20-
python-version: [ "3.6", "3.7", "3.8", "3.9" ]
20+
python-version: [ "3.7", "3.8", "3.9" ]
2121

2222
steps:
2323
- uses: "actions/checkout@v3"

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,3 +112,6 @@ ENV/
112112

113113
# mypy
114114
.mypy_cache/
115+
116+
# DS
117+
.DS_Store

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Or Install from ``source code``::
2222
Requirements
2323
------------
2424

25-
``drf-user`` supports Python 3.6 and above.
25+
``drf-user`` supports Python 3.7 and above.
2626

2727
Prerequisites
2828
-------------

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
long_description_content_type="text/markdown",
1616
license=__import__("drf_user").__license__,
1717
url="https://github.com/101loop/drf-user",
18-
python_requires=">=3.6",
18+
python_requires=">=3.7",
1919
packages=setuptools.find_packages(),
2020
install_requires=open("requirements.txt").read().split(),
2121
include_package_data=True,
22-
classifiers=(
22+
classifiers=[
2323
"Development Status :: 5 - Production/Stable",
2424
"Environment :: Web Environment",
2525
"Framework :: Django",
@@ -31,11 +31,10 @@
3131
"Operating System :: OS Independent",
3232
"Programming Language :: Python",
3333
"Programming Language :: Python :: 3",
34-
"Programming Language :: Python :: 3.6",
3534
"Programming Language :: Python :: 3.7",
3635
"Programming Language :: Python :: 3.8",
3736
"Programming Language :: Python :: 3.9",
3837
"Topic :: Software Development :: Libraries",
3938
"Topic :: Internet :: WWW/HTTP",
40-
),
39+
],
4140
)

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py{36,37,38,39}-django{22}-drf{310,311,312}
8-
py{36,37,38,39}-django{31,32}-drf{311,312,master}
7+
envlist = py{37,38,39}-django{22}-drf{310,311,312}
8+
py{37,38,39}-django{31,32}-drf{311,312,master}
99

1010
[testenv]
1111
commands =
@@ -25,7 +25,6 @@ whitelist_externals =
2525

2626
[gh-actions]
2727
python =
28-
3.6: py36
2928
3.7: py37
3029
3.8: py38
3130
3.9: py39

0 commit comments

Comments
 (0)