Skip to content

Commit

Permalink
29 package version problems (#48)
Browse files Browse the repository at this point in the history
* set range of wetterdienst version numbers

* versions to compatible release operator

---------

Co-authored-by: Martin Rätz <[email protected]>
  • Loading branch information
MartinRaetz and Martin Rätz authored Feb 19, 2024
1 parent 9c75849 commit 7e5f419
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
wetterdienst
unidecode
parameterized
geopandas
geopy
pvlib
matplotlib
seaborn
wetterdienst>=0.65.0,<=0.72.0
unidecode~=1.3.7
parameterized~=0.9.0
geopandas~=0.14.0
geopy~=2.4.0
pvlib~=0.10.2
matplotlib~=3.8.1
seaborn~=0.13.0
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
long_description = readme_path.read_text()

INSTALL_REQUIRES = [
"unidecode",
"pvlib",
"matplotlib",
"seaborn",
"unidecode~=1.3.7",
"pvlib~=0.10.2",
"matplotlib~=3.8.1",
"seaborn~=0.13.0",
]
EXTRAS_REQUIRE = {
'TRY': [
"geopandas",
"geopy",
"geopandas~=0.14.0",
"geopy~=2.4.0",
],
"DWD_forecast": ["wetterdienst"],
"DWD_forecast": ["wetterdienst>=0.65.0,<=0.72.0"],
"full": [
"wetterdienst",
"geopandas",
"geopy",
"wetterdienst>=0.65.0,<=0.72.0",
"geopandas~=0.14.0",
"geopy~=2.4.0",
]
}

Expand Down

0 comments on commit 7e5f419

Please sign in to comment.