Skip to content

Commit

Permalink
updated dependencies (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisHoch authored Mar 14, 2023
1 parent 0a8dacb commit c35247f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
23 changes: 11 additions & 12 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ channels:
- conda-forge

dependencies:
- python>=3.6
- xarray==0.15.1
- pandas==1.0.3
- numpy==1.18.1
- matplotlib==3.2.1
- python>=3.9
- xarray>=0.15.1
- pandas>=1.0.3
- numpy>=1.18.1
- matplotlib>=3.2.1
- rtree>=0.9.4
- pytest>=5.4.2
- pytest-runner
Expand All @@ -17,7 +17,7 @@ dependencies:
- ipython
- notebook
- nbconvert
- ipykernel==5.3.2
- ipykernel>=5.3.2
- scikit-learn>=0.23.2
- netcdf4
- ConfigParser
Expand All @@ -27,9 +27,8 @@ dependencies:
- colorama
- setuptools>=49.6
- pillow==8.1.0
- pip:
- geopandas==0.8.0
- rasterio==1.1.0
- fiona
- rasterstats==0.14.0

- geopandas>=0.8.0
- rasterio>=1.1.0
- fiona
- rasterstats>=0.14.0

9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@
readme = readme_file.read()

requirements = ['Click>=7.0',
'xarray==0.15.1',
'pandas==1.0.3',
'xarray>=0.15.1',
'pandas>=1.0.3',
'rasterio>=1.1.0',
'rioxarray>=0.0.26',
'rasterstats>=0.14',
'geopandas>=0.8.0',
'numpy==1.22.0',
'numpy>=1.21.0',
'scikit-learn>=0.22.1',
'seaborn>=0.11',
'numpy==1.22.0']
'numpy>=1.21.0']


setup_requirements = ['pytest-runner', ]

Expand Down

0 comments on commit c35247f

Please sign in to comment.