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 support for Python 3.9 #72

Merged
merged 1 commit into from Jun 22, 2021
Merged
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
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,7 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
install:
- pip install tox-travis
- pip install coveralls
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -7,7 +7,7 @@ test_install: install
pip3 install -r requirements_test.txt

test: test_install
python3.8 setup.py test
python3.9 setup.py test

upload: create_dist
pip3 install twine
Expand All @@ -16,11 +16,11 @@ upload: create_dist

create_dist: create_dist_no_commit update_pip
rm -rf dist
python3.8 setup.py sdist
python3.9 setup.py sdist

create_dist_no_commit: update_pip
rm -rf dist
python3.8 setup.py sdist
python3.9 setup.py sdist

create_dist_commit:
git commit --all -m "Bump version ${ELASTICMOCK_VERSION}"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -34,6 +34,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"License :: OSI Approved :: MIT License",
'Topic :: Software Development :: Libraries :: Python Modules'
]
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Expand Up @@ -4,6 +4,7 @@ envlist =
py36-elasticsearch{1,2,5,6,7}
py37-elasticsearch{1,2,5,6,7}
py38-elasticsearch{1,2,5,6,7}
py39-elasticsearch{1,2,5,6,7}

[testenv]
deps =
Expand Down