Skip to content

Commit ce1c890

Browse files
python 3.8
1 parent 860343d commit ce1c890

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ celerybeat-schedule
7979
.env
8080

8181
# virtualenv
82+
.venv
8283
venv/
8384
ENV/
8485

pythonanywhere/api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
from pythonanywhere.exceptions import SanityException
1010
from pythonanywhere.snakesay import snakesay
1111

12-
PYTHON_VERSIONS = {"2.7": "python27", "3.4": "python34", "3.5": "python35", "3.6": "python36", "3.7": "python37"}
12+
PYTHON_VERSIONS = {
13+
"2.7": "python27", "3.4": "python34", "3.5": "python35", "3.6": "python36", "3.7": "python37", "3.8": "python38",
14+
}
1315

1416

1517
class AuthenticationError(Exception):

submodules/example-django-project

0 commit comments

Comments
 (0)