Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin max major versions of dependencies for future compatibility #467

Merged
merged 3 commits into from
Feb 5, 2024
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
22 changes: 10 additions & 12 deletions dev-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,16 @@ name: xdem-dev
channels:
- conda-forge
dependencies:
- python>=3.9
- geopandas>=0.10.0
- fiona
- shapely
- numba
- numpy
- matplotlib
- pyproj>=3.4
- rasterio>=1.3
- scipy
- python>=3.9,<3.12
- geopandas>=0.12.0,<0.14
- numba=0.*
- numpy=1.*
- matplotlib=3.*
- pyproj>=3.4,<4
- rasterio>=1.3,<2
- scipy=1.*
- tqdm
- scikit-image
- scikit-image=0.*
- scikit-gstat>=1.0
- geoutils=0.0.15

Expand All @@ -35,7 +33,7 @@ dependencies:

# Doc dependencies
- sphinx
- pydata-sphinx-theme==0.13.3
- pydata-sphinx-theme
- sphinx-book-theme>=1.0
- sphinxcontrib-programoutput
- sphinx-design
Expand Down
20 changes: 9 additions & 11 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,16 @@ name: xdem
channels:
- conda-forge
dependencies:
- python>=3.9
- geopandas>=0.10.0
- fiona
- shapely
- numba
- numpy
- matplotlib
- pyproj>=3.4
- rasterio>=1.3
- scipy
- python>=3.9,<3.12
- geopandas>=0.12.0,<0.14
- numba=0.*
- numpy=1.*
- matplotlib=3.*
- pyproj>=3.4,<4
- rasterio>=1.3,<2
- scipy=1.*
- tqdm
- scikit-image
- scikit-image=0.*
- scikit-gstat>=1.0
- geoutils=0.0.15
- pip
Expand Down
18 changes: 8 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# This file is auto-generated from environment.yml, do not modify.
# See that file for comments about the need/usage of each dependency.

geopandas>=0.10.0
fiona
shapely
numba
numpy
matplotlib
pyproj>=3.4
rasterio>=1.3
scipy
geopandas>=0.12.0,<0.14
numba==0.*
numpy==1.*
matplotlib==3.*
pyproj>=3.4,<4
rasterio>=1.3,<2
scipy==1.*
tqdm
scikit-image
scikit-image==0.*
scikit-gstat>=1.0
geoutils==0.0.15
pip
Expand Down
Loading