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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:

Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
Changelog
=========

Unreleased
----------

Added
~~~~~
- Python 3.9 support

Updated
~~~~~~~
- Pandas version to >=1, <2 to support Python 3.9

v9.5.0
------

Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ def run_tests(self):
]

# Extra module dependencies
jupyter_deps = ["pandas>=0.23,<1", "responses>=0.12.0,<1", "jupyter>=1.0.0, <2"]
jupyter_deps = ["pandas>=1, <2", "responses>=0.12.0,<1", "jupyter>=1.0.0, <2"]

analysis_deps = [
"autoprotocol>=7.6.1,<8",
"matplotlib>=3,<4",
# incompatibilities with release 1.20.0
"numpy>=1.14,<=1.19.5",
"pandas>=0.23,<1",
# Version 1.21 upwards only support Python >= 3.7
"numpy>=1.14,<=1.20.3",
"pandas>=1,<2",
"pillow>=3,<4",
"plotly>=1.13,<2",
]
Expand Down Expand Up @@ -104,5 +104,6 @@ def run_tests(self):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = clean, py36, py37, py38, stats, lint, docs
envlist = clean, py36, py37, py38, py39, stats, lint, docs

[testenv]
commands = python setup.py test {posargs}
Expand Down