Skip to content

Commit 5dd087b

Browse files
authored
Patch release: pandas dependency version restriction (#125)
1 parent 09f0567 commit 5dd087b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# TFS-Pandas Changelog
22

3+
## Version 3.7.1
4+
5+
- Changed:
6+
- The dependency on `pandas` was restricted to avoid the latest version, `2.1.0` and above as a temporary workaround to an attribute access bug that arose with it.
7+
38
## Version 3.7.0
49

510
Minor API changes to the `TFSCollections`:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def about_package(init_posixpath: pathlib.Path) -> dict:
3030
# Dependencies for the package itself
3131
DEPENDENCIES = [
3232
"numpy>=1.19.0",
33-
"pandas>=1.0",
33+
"pandas>=1.0,<2.1.0",
3434
]
3535

3636
# Extra dependencies

tfs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__title__ = "tfs-pandas"
1111
__description__ = "Read and write tfs files."
1212
__url__ = "https://github.com/pylhc/tfs"
13-
__version__ = "3.7.0"
13+
__version__ = "3.7.1"
1414
__author__ = "pylhc"
1515
__author_email__ = "[email protected]"
1616
__license__ = "MIT"

0 commit comments

Comments
 (0)