Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add python version 3.9 #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Expand Up @@ -13,7 +13,9 @@ matrix:
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.8
- python: 3.9-dev
env: TOXENV=py39
- python: 3.9-dev
env: TOXENV=flake8

script:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -9,7 +9,7 @@ django-dotenv
Original implementation was written by
`@jacobian <https://github.com/jacobian>`__.

Tested on Python 3.5, 3.6, 3.7 and 3.8.
Tested on Python 3.5, 3.6, 3.7, 3.8 and 3.9.

Installation
------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -48,6 +48,7 @@ def get_version(module):
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
]
)
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -5,6 +5,7 @@ envlist =
py36,
py37,
py38,
py39,

[testenv]
commands = python setup.py test
Expand Down