Skip to content

Commit

Permalink
run tests on python 3.9 (pydata#5040)
Browse files Browse the repository at this point in the history
* add a py39 CI

* add python 3.9 to the list of supported python versions

* update the minimum supported versions

* move the upstream-dev CI to py39 [skip-ci] [test-upstream]
  • Loading branch information
keewis authored Mar 16, 2021
1 parent daea5df commit 14b288b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.7", "3.8"]
python-version: ["3.7", "3.8", "3.9"]
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upstream-dev-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8"]
python-version: ["3.9"]
outputs:
artifacts_availability: ${{ steps.status.outputs.ARTIFACTS_AVAILABLE }}
steps:
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering

[options]
Expand All @@ -74,8 +75,8 @@ zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.htm
include_package_data = True
python_requires = >=3.7
install_requires =
numpy >= 1.15
pandas >= 0.25
numpy >= 1.17
pandas >= 1.0
setuptools >= 40.4 # For pkg_resources

[options.extras_require]
Expand Down

0 comments on commit 14b288b

Please sign in to comment.