Skip to content

Commit

Permalink
Make dependencies less restrictive (#7)
Browse files Browse the repository at this point in the history
* make dependencies less restrictive

* pin dependencies to not jump major versions
  • Loading branch information
LukeWeidenwalker authored Dec 2, 2022
1 parent ec52610 commit bb8f7cd
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,23 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.9,<3.10"
geopandas = "^0.12.1"
xarray = "^2022.11.0"
dask = {extras = ["array"], version = "^2022.11.1"}
geopandas = ">=0.12.1,<1"
xarray = ">=2022.11.0"
dask = {extras = ["array"], version = ">=2022.11.1"}
rasterio = "^1.3.4"
dask-geopandas = "^0.2.0"
datacube = "^1.8.9"
xgboost = "^1.7.1"
rioxarray = "^0.13.1"
odc-algo = "^0.2.3"
openeo-pg-parser-networkx = "^2022.11.0"
dask-geopandas = ">=0.2.0,<1"
datacube = "^1.8.4"
xgboost = "^1.5.1"
rioxarray = ">=0.12.0,<1"
odc-algo = ">=0.2.3,<1"
openeo-pg-parser-networkx = ">=2022.11.0"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
ipykernel = "^6.15.1"
matplotlib = "^3.5.3"
folium = "^0.12.1"
folium = ">=0.12.1,<1"
mapclassify = "^2.4.3"

[tool.poetry.group.dev.dependencies]
bokeh = "<3"
pre-commit = "^2.20.0"
pytest-cov = "^4.0.0"
Expand Down

0 comments on commit bb8f7cd

Please sign in to comment.