Skip to content

Commit 9aadbf8

Browse files
committed
WIP
1 parent bd9ccdd commit 9aadbf8

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
CONDA_PY: ["36", "37", "38", "39"]
19+
include:
20+
- CONDA_PY: "36"
21+
PYTHON_VERSION: "=3.6"
22+
- CONDA_PY: "37"
23+
PYTHON_VERSION: "=3.7"
24+
- CONDA_PY: "38"
25+
PYTHON_VERSION: "=3.8"
26+
- CONDA_PY: "39"
27+
PYTHON_VERSION: "=3.9"
28+
1929

2030
steps:
2131
- uses: actions/checkout@v2
@@ -33,13 +43,18 @@ jobs:
3343
- name: Install
3444
env:
3545
CONDA_PY: ${{ matrix.CONDA_PY }}
46+
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
3647
run: |
3748
conda config --system --set always_yes yes --set changeps1 no
3849
conda install -c conda-forge conda-devenv
3950
conda info -a
4051
export TEST_QMXGRAPH=1
52+
echo "=== conda devenv -n qmxgraph --print-full ==="
53+
conda devenv -n qmxgraph --print-full
54+
echo "=== === ==="
4155
conda devenv -n qmxgraph
4256
conda install -n qmxgraph coveralls pytest-cov
57+
conda list -n qmxgraph
4358
conda init bash
4459
- name: Tests
4560
shell: bash -l {0}

_base_environment.devenv.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
name: qmxgraph
22

33
dependencies:
4-
- python >=3.6
4+
- python {{ os.environ.get("PYTHON_VERSION", ">=3.6") }}
5+
6+
{% if "PYTHON_VERSION" in os.environ %}
7+
- importlib_resources =1.3
8+
- zipp =3.3
9+
{% endif %}
510

611
- attrs >=17
712
- colorama

0 commit comments

Comments
 (0)