Skip to content

Commit

Permalink
Merge pull request #72 from singingwolfboy/py39
Browse files Browse the repository at this point in the history
Add support for Python 3.9
  • Loading branch information
vrcmarcos committed Jun 22, 2021
2 parents 7ffe7e4 + 47a751a commit a855e2d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
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 @@ -33,6 +33,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

0 comments on commit a855e2d

Please sign in to comment.