Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
test against python3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
fphammerle committed Feb 20, 2021
1 parent 862bfde commit 7b104b4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- 3.6
- 3.7
- 3.8
- 3.9
pandas-version:
- '' # locked version
- 0.21.*
Expand Down Expand Up @@ -74,6 +75,14 @@ jobs:
pandas-version: 0.23.*
- python-version: 3.8
pandas-version: 0.24.*
- python-version: 3.9
pandas-version: 0.21.*
- python-version: 3.9
pandas-version: 0.22.*
- python-version: 3.9
pandas-version: 0.23.*
- python-version: 3.9
pandas-version: 0.24.*
fail-fast: false
steps:
- uses: actions/checkout@v1
Expand All @@ -90,7 +99,9 @@ jobs:
PANDAS_VERSION: ${{ matrix.pandas-version }}
- run: pipenv graph
- run: pipenv run pytest --cov="$(cat *.egg-info/top_level.txt)" --cov-report=term-missing --cov-fail-under=100
- run: pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
# https://github.com/PyCQA/pylint/issues/3882
- run: python3 -c 'import sys; sys.exit(sys.version_info < (3, 9))'
|| pipenv run pylint --load-plugins=pylint_import_requirements "$(cat *.egg-info/top_level.txt)"
# https://github.com/PyCQA/pylint/issues/352
# disable parse-error due to:
# > tests/resources/__init__.py:1:0: F0010: error while code parsing: Unable to load file tests/resources/__init__.py:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Utilities",
Expand Down

0 comments on commit 7b104b4

Please sign in to comment.