Skip to content

Commit

Permalink
Add support for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Dec 24, 2020
1 parent f73a3aa commit 9146c2e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -24,7 +24,7 @@ Alternatively, install directly from the GitHub repository:

pip install git+https://github.com/tweepy/tweepy.git

Python 2.7, 3.5, 3.6, 3.7, & 3.8 are supported.
Python 2.7, 3.5, 3.6, 3.7, 3.8, & 3.9 are supported.

Community
---------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -68,6 +68,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
zip_safe=True,
)
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py35, py36, py37, py38
envlist = py27, py35, py36, py37, py38, py39

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

0 comments on commit 9146c2e

Please sign in to comment.