Skip to content

Commit 4b6d4dd

Browse files
authored
Make Python 3.8 the default. Add support for building for Python 3.8 (#266)
1 parent 777e9da commit 4b6d4dd

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ sphinx:
66
formats: all
77

88
python:
9-
version: 3.7
9+
version: 3.8

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Config file for automatic testing at travis-ci.org
22

33
language: python
4-
python: 3.7
4+
python: 3.8
55

66
dist: xenial # default "precise" distro doesn't include Java 8 for Elasticsearch 5
77

@@ -11,6 +11,8 @@ matrix:
1111
python: 3.6
1212
- env: TOX_ENV=py37-django-111-es6
1313
python: 3.7
14+
- env: TOX_ENV=py38-django-111-es6
15+
python: 3.8
1416
- env: TOX_ENV=py27-django-111-es6
1517
python: 2.7
1618
- env: TOX_ENV=py36-django-2-es6
@@ -23,6 +25,14 @@ matrix:
2325
python: 3.7
2426
- env: TOX_ENV=py37-django-30-es6
2527
python: 3.7
28+
- env: TOX_ENV=py38-django-2-es6
29+
python: 3.8
30+
- env: TOX_ENV=py38-django-21-es6
31+
python: 3.8
32+
- env: TOX_ENV=py38-django-22-es6
33+
python: 3.8
34+
- env: TOX_ENV=py38-django-30-es6
35+
python: 3.8
2636

2737
cache: pip
2838
env:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Features
3131
- Requirements
3232

3333
- Django >= 1.11
34-
- Python 2.7, 3.5, 3.6, 3.7
34+
- Python 2.7, 3.5, 3.6, 3.7, 3.8
3535

3636
**Elasticsearch Compatibility:**
3737
The library is compatible with all Elasticsearch versions since 5.x

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,6 @@
6565
'Programming Language :: Python :: 3.5',
6666
'Programming Language :: Python :: 3.6',
6767
'Programming Language :: Python :: 3.7',
68+
'Programming Language :: Python :: 3.8',
6869
],
6970
)

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py27-django-111-es7
4-
{py36,py37}-django-{111,2,21,22,30}-{es7}
4+
{py36,py37,py38}-django-{111,2,21,22,30}-{es7}
55

66
[testenv]
77
setenv =
@@ -23,3 +23,4 @@ basepython =
2323
py27: python2.7
2424
py36: python3.6
2525
py37: python3.7
26+
py38: python3.8

0 commit comments

Comments
 (0)