Skip to content

Commit da63251

Browse files
drop python 3.5 and 3.6 (#152)
* drop python 3.5 and 3.6 * Update python_requires Co-authored-by: Bruno Oliveira <[email protected]>
1 parent 28b06b7 commit da63251

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,9 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python: ["3.5", "3.6", "3.7", "3.8", "3.9"]
24+
python: [3.7", "3.8", "3.9"]
2525
os: [ubuntu-latest, macos-latest]
2626
include:
27-
- python: "3.5"
28-
tox_env: "py35"
29-
- python: "3.6"
30-
tox_env: "py36"
3127
- python: "3.7"
3228
tox_env: "py37"
3329
- python: "3.8"

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Changelog
99
where ``SESSION_COOKIE_DOMAIN`` was set to false due to
1010
``original_server_name`` defaulting to "localhost".
1111
The new default is "localhost.localdomain".
12+
- Drop support for python 3.6 and 3.5
1213

1314
1.2.0 (2021-02-26)
1415
------------------

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ classifiers=
1818
Environment :: Web Environment
1919
Intended Audience :: Developers
2020
Operating System :: OS Independent
21-
Programming Language :: Python :: 3.5
22-
Programming Language :: Python :: 3.6
2321
Programming Language :: Python :: 3.7
2422
Programming Language :: Python :: 3.8
2523
Programming Language :: Python :: 3.9
@@ -31,7 +29,7 @@ classifiers=
3129
[options]
3230
packages = find:
3331
zip_safe = False
34-
python_requires = >= 3.5
32+
python_requires = >= 3.7
3533
setup_requires = setuptools_scm
3634

3735
[options.packages.find]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{35,36,37,38,39,linting}
3+
py{37,38,39,linting}
44

55
[pytest]
66
norecursedirs = .git .tox env coverage docs

0 commit comments

Comments
 (0)