Skip to content

Commit 43a6c9d

Browse files
committed
update conda-recipe/meta.yaml to use lower case and fix dependencies
1 parent 19ce7cc commit 43a6c9d

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

conda-recipe/meta.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ source:
1010

1111
build:
1212
noarch: python
13-
script: python -m pip install . -vv --no-deps
13+
script: |
14+
python -m pip install . -vv --no-deps
15+
PIP_NO_INDEX=0 python -m pip install -vv --index-url https://pypi.org/simple waterEntropy
1416
entry_points:
1517
- CodeEntropy=CodeEntropy.cli:main
1618

@@ -20,19 +22,21 @@ requirements:
2022
- pip
2123
- flit-core >=3.4,<4
2224
run:
23-
- python >=3.11
25+
- python >=3.12
2426
- numpy >=2.3,<3.0
2527
- mdanalysis >=2.10,<3.0
2628
- pandas >=3.0,<3.1
2729
- psutil >=7.1,<8.0
2830
- pyyaml >=6.0,<7.0
29-
- python-json-logger >=4.0,<5.0
31+
- python-json-logger >=2.0,<3.0
3032
- rich >=14.2,<15.0
31-
- art >=6.5,<7.0
33+
- python-art >=6.5,<7.0
3234
- networkx >=3.6,<3.7
3335
- matplotlib >=3.10,<3.11
34-
- waterentropy >=2,<2.1
3536
- requests >=2.32,<3.0
37+
- dask >=2026.1.2,<2026.2.0
38+
- distributed >=2026.1.2,<2026.2.0
39+
- dask-jobqueue >=0.9,<0.10
3640

3741
test:
3842
imports:

0 commit comments

Comments
 (0)