Skip to content

Commit b1549a1

Browse files
authored
ci: alpha library api tweaks (#118)
1 parent da71682 commit b1549a1

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.github/workflows/main.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,5 @@ jobs:
4343
with:
4444
package-name: rescript
4545
additional-tests: pytest --pyargs rescript
46-
# TODO: update this to `release` when tagging release
47-
build-target: staged
46+
build-target: dev
4847
library-token: ${{ secrets.LIBRARY_TOKEN }}

ci/recipe/conda_build_config.yaml

-2
This file was deleted.

ci/recipe/meta.yaml

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{% set data = load_setup_py_data() %}
22
{% set version = data.get('version') or 'placehold' %}
3-
{% set release = '.'.join(version.split('.')[:2]) %}
43

54
package:
65
name: rescript
@@ -24,12 +23,19 @@ requirements:
2423
- pandas >=0.25.3
2524
- scikit-learn
2625
- scikit-bio
27-
- q2-types {{ release }}.*
28-
- q2-longitudinal {{ release }}.*
29-
- q2-feature-classifier {{ release }}.*
30-
- qiime2 {{ release }}.*
26+
- q2-types {{ qiime2_epoch }}.*
27+
- q2-longitudinal {{ qiime2_epoch }}.*
28+
- q2-feature-classifier {{ qiime2_epoch }}.*
29+
- qiime2 {{ qiime2_epoch }}.*
3130

3231
test:
32+
requires:
33+
- pytest
34+
- q2-types >={{ q2_types }}
35+
- q2-longitudinal >={{ q2_longitudinal }}
36+
- q2-feature-classifier >={{ q2_feature_classifier }}
37+
- qiime2 >={{ qiime2 }}
38+
3339
imports:
3440
- rescript
3541
- qiime2.plugins.rescript

0 commit comments

Comments
 (0)