Skip to content

Commit a625975

Browse files
committed
Minor fixes
1 parent e80fa9e commit a625975

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/python-package-conda.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ jobs:
5454
shell: bash -l {0}
5555
run: |
5656
conda install conda-build anaconda-client -c conda-forge -y
57+
- name: Debug Recipe Contents
58+
shell: bash -l {0}
59+
run: |
60+
echo "Contents of meta.yaml:"
61+
cat conda-recipe/meta.yaml
5762
- name: Debug Channel Configuration
5863
shell: bash -l {0}
5964
run: |

conda-recipe/meta.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ source:
1111
build:
1212
noarch: python
1313
script:
14-
- "{{ PYTHON }} -m pip install . -vv"
15-
- "{{ PYTHON }} -m pip install torch==1.13.1"
14+
- {{ PYTHON }} -m pip install . -vv
15+
- {{ PYTHON }} -m pip install torch==1.13.1
1616
entry_points:
1717
- deeptaxa = deeptaxa.cli:main
1818

1919
requirements:
2020
host:
21-
- python >=3.10
21+
- python >=3.10,<3.11
2222
- pip
2323
- setuptools >=64
2424
- wheel
@@ -34,7 +34,7 @@ requirements:
3434

3535
test:
3636
commands:
37-
- "{{ PYTHON }} -m pip install torch==1.13.1"
37+
- {{ PYTHON }} -m pip install torch==1.13.1
3838
- deeptaxa --version
3939
imports:
4040
- deeptaxa

0 commit comments

Comments
 (0)