Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions .coveragerc_py27 → .coveragerc_py39
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ timid = True
[report]
exclude_lines =
pragma: no cover
pragma: py2 no cover
if six.PY3
elif six.PY3
pragma: py3 no cover
if six.PY2
elif six.PY2

partial_branches =
pragma: no cover
pragma: py2 no cover
pragma: py3 no cover
if six.PY3
elif six.PY3

Expand Down
4 changes: 2 additions & 2 deletions buildspec-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ phases:
- tox -e black-check

# run unit tests
- tox -e py36,py37 -- test/unit
- tox -e py38,py39,py310 -- test/unit

# build dummy container
- python3 setup.py sdist
Expand All @@ -37,7 +37,7 @@ phases:
- cd ../..

# run local integration tests
- IGNORE_COVERAGE=- tox -e py36,py37 -- test/integration/local
- IGNORE_COVERAGE=- tox -e py38,py39,py310 -- test/integration/local

# publish the release to github
- git-release --publish
Expand Down
4 changes: 2 additions & 2 deletions buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ phases:
- tox -e twine

# run unit tests
- tox -e py36,py37 -- test/unit
- tox -e py38,py39,py310 -- test/unit

# build dummy container
- python setup.py sdist
Expand All @@ -35,4 +35,4 @@ phases:
- cd ../..

# run local integration tests
- IGNORE_COVERAGE=- tox -e py36,py37 -- test/integration/local
- IGNORE_COVERAGE=- tox -e py38,py39,py310 -- test/integration/local
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@ def read_version():
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
install_requires=required_packages,
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = black-format,flake8,pylint,twine,py36,py37
envlist = black-format,flake8,pylint,twine,py38,py39,py310

skip_missing_interpreters = False

Expand Down