Skip to content

Commit 5dbc4a8

Browse files
committed
Drop py27 support
1 parent 3327993 commit 5dbc4a8

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ before_script:
1616

1717
matrix:
1818
include:
19-
- python: 2.7
20-
env:
21-
- "TOXENV=py27"
2219
- python: 3.5
2320
env:
2421
- "TOXENV=py35"

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Here you can see the full list of changes between each SQLAlchemy-Utils release.
88
^^^^^^^^^^^^^^^^^^^
99

1010
- Added jsonb_sql function (#377, pull request courtesy of getglad)
11+
- Drop py27 support
1112

1213

1314
0.36.3 (2020-03-18)

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ def get_version():
8787
'License :: OSI Approved :: BSD License',
8888
'Operating System :: OS Independent',
8989
'Programming Language :: Python',
90-
'Programming Language :: Python :: 2',
91-
'Programming Language :: Python :: 2.7',
9290
'Programming Language :: Python :: 3',
9391
'Programming Language :: Python :: 3.4',
9492
'Programming Language :: Python :: 3.5',

tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py35, py36, py37, lint
2+
envlist = py35, py36, py37, lint
33

44
[testenv]
55
commands =
@@ -8,9 +8,6 @@ deps =
88
.[test_all]
99
passenv = SQLALCHEMY_UTILS_TEST_DB SQLALCHEMY_UTILS_TEST_POSTGRESQL_USER SQLALCHEMY_UTILS_TEST_MYSQL_USER
1010

11-
[testenv:py27]
12-
recreate = True
13-
1411
[testenv:py35]
1512
recreate = True
1613

0 commit comments

Comments
 (0)