Skip to content

Commit

Permalink
[BB-2683] Add python 3.8 support (#83)
Browse files Browse the repository at this point in the history
Add python 3.8 support
  • Loading branch information
shimulch committed Aug 7, 2020
1 parent 267a9b8 commit 1efd04b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dist: xenial
python:
- "2.7"
- "3.5"
- "3.8"

services:
- xvfb
Expand Down
12 changes: 9 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Internationalization and Localization requirements
-e git://github.com/edx/xblock-sdk.git@v0.1.6#egg=xblock-sdk==v0.1.6
Django==1.11.25
-e 'git://github.com/edx/xblock-sdk.git@v0.1.6#egg=xblock-sdk==v0.1.6 ; python_version == "2.7"'
-e 'git://github.com/edx/xblock-sdk.git@0.2.2#egg=xblock-sdk==v0.2.2 ; python_version > "2.7"'

Django~=1.11; python_version == '2.7'
Django~=2.2; python_version > '2.7'

# Latest version(1.0.4) of django-appconf do not support python 2
django-appconf==1.0.3
django-appconf==1.0.3; python_version == '2.7'
django-appconf==1.0.4; python_version > '2.7'

django-statici18n==1.8.2
transifex-client==0.12.1
edx-i18n-tools==0.5.0
Expand Down

0 comments on commit 1efd04b

Please sign in to comment.