Skip to content

Commit 1efd04b

Browse files
authored
[BB-2683] Add python 3.8 support (#83)
Add python 3.8 support
1 parent 267a9b8 commit 1efd04b

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ dist: xenial
44
python:
55
- "2.7"
66
- "3.5"
7+
- "3.8"
78

89
services:
910
- xvfb

requirements-dev.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# Internationalization and Localization requirements
2-
-e git://github.com/edx/xblock-sdk.git@v0.1.6#egg=xblock-sdk==v0.1.6
3-
Django==1.11.25
2+
-e 'git://github.com/edx/xblock-sdk.git@v0.1.6#egg=xblock-sdk==v0.1.6 ; python_version == "2.7"'
3+
-e 'git://github.com/edx/xblock-sdk.git@0.2.2#egg=xblock-sdk==v0.2.2 ; python_version > "2.7"'
4+
5+
Django~=1.11; python_version == '2.7'
6+
Django~=2.2; python_version > '2.7'
7+
48
# Latest version(1.0.4) of django-appconf do not support python 2
5-
django-appconf==1.0.3
9+
django-appconf==1.0.3; python_version == '2.7'
10+
django-appconf==1.0.4; python_version > '2.7'
11+
612
django-statici18n==1.8.2
713
transifex-client==0.12.1
814
edx-i18n-tools==0.5.0

0 commit comments

Comments
 (0)