Skip to content

Commit cbd962c

Browse files
committed
fix: enhancements after code review
1 parent ff1629a commit cbd962c

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ env:
2323
- DJANGO_VERSION='Django>=3.0,<3.1'
2424
- DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
2525

26+
matrix:
27+
allow_failures:
28+
- python: "3.8"
29+
env: DJANGO_VERSION='Django>=1.11,<1.12'
30+
- env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz'
31+
2632
before_install:
2733
# https://gis.stackexchange.com/a/252610
2834
- wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def read(fname):
2727
'swapper',
2828
'tqdm',
2929
],
30-
python_requires='>=3.5',
30+
python_requires='>=3.6',
3131
include_package_data=True,
3232
zip_safe=False,
3333
long_description=read('README.md'),
@@ -46,9 +46,9 @@ def read(fname):
4646
"License :: OSI Approved :: MIT License",
4747
"Operating System :: OS Independent",
4848
"Programming Language :: Python",
49-
"Programming Language :: Python :: 3",
50-
"Programming Language :: Python :: 3.4",
51-
"Programming Language :: Python :: 3.5",
49+
"Programming Language :: Python :: 3.6",
50+
"Programming Language :: Python :: 3.7",
51+
"Programming Language :: Python :: 3.8",
5252
"Topic :: Internet :: WWW/HTTP",
5353
"Topic :: Software Development :: Libraries :: Python Modules",
5454
],

0 commit comments

Comments
 (0)