Skip to content

Commit

Permalink
Fix Pandas version (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
clampr committed Sep 26, 2023
1 parent 051cd23 commit d6cb88b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pandas>=1.1
pandas>=1.1,<2
pytz
numpy
matplotlib
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Setup
setup(
name="meteostat",
version="1.6.5",
version="1.6.6",
author="Meteostat",
author_email="info@meteostat.net",
description="Access and analyze historical weather and climate data with Python.",
Expand All @@ -26,7 +26,7 @@
python_requires=">=3.6.0",
packages=find_packages(),
include_package_data=True,
install_requires=["pandas>=1.1", "pytz", "numpy"],
install_requires=["pandas>=1.1,<2", "pytz", "numpy"],
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit d6cb88b

Please sign in to comment.