We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed4375 commit 81c9530Copy full SHA for 81c9530
.github/workflows/ci.yml
@@ -65,6 +65,16 @@ jobs:
65
- envs: "envs/env1.yaml"
66
policy-file: policy_no_extra_options.yaml
67
expected-failure: "false"
68
+ - envs: pixi:env1
69
+ manifest-path: envs/pixi.toml
70
+ - envs: |
71
+ pixi:env1
72
+ pixi:env2
73
74
75
76
+ conda:envs/env2.yaml
77
78
79
steps:
80
- name: clone the repository
envs/pixi.toml
@@ -0,0 +1,14 @@
1
+[dependencies]
2
+numpy = "1.24"
3
+pandas = "2.1"
4
+packaging = "23.1"
5
+
6
+[feature.py310.dependencies]
7
+python = "3.10"
8
9
+[feature.py311.dependencies]
10
+python = "3.11"
11
12
+[environments]
13
+env1 = { features = ["py310"] }
14
+env2 = ["py311"]
0 commit comments