Skip to content
Closed
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: 15 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ classifiers = [
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"numpy<2",
"salib<1.5.1",
"matplotlib",
"pyshp",
"scipy",
Expand All @@ -43,7 +44,6 @@ dependencies = [
"contextily",
"geopandas",
"fiona",
"salib"
]

# Setuptools
Expand Down Expand Up @@ -85,15 +85,18 @@ line-length = 109
channels = ["https://prefix.dev/conda-forge"]
platforms = ["linux-64", "win-64", "osx-64"]

[too.pixi.target.osx-64.dependencies]
numpy = "*"

[tool.pixi.dependencies]
setuptools = "*"
setuptools-scm = "*"
cibuildwheel = "*"
# FSO: remove as soon as possible
gdal = "*"
#gdal = "*"
libgdal = "*"
geos = "*"
proj = "*"
#geos = "*"
#proj = "*"

# Feature dev
[tool.pixi.feature.dev.pypi-dependencies]
Expand All @@ -114,15 +117,19 @@ sphinxcontrib-bibtex = "*"

#Feature prod
[tool.pixi.feature.prod.pypi-dependencies]
avaframe = "*"
#avaframe = "*"

#Feature py313
[tool.pixi.feature.py313.dependencies]
python = "==3.13.7"

#Feature rcs
#[tool.pixi.feature.rcs.pypi-dependencies]
#avaframe = "==1.13rc4"

#Feature qgis
[tool.pixi.feature.qgis.dependencies]
qgis = "*"
#qgis = "*"

#Environments
[tool.pixi.environments]
Expand All @@ -131,5 +138,6 @@ dev = ["dev"]
doc = ["doc", "dev"]
prod = ["prod"]
#rcs = ["rcs"]
py313 = ["py313","dev"]
qgis = ["qgis", "dev"]

Loading