jobs:
run-tests:
+ env:
+ not_in_conda: "[]"
strategy:
matrix:
- uses: actions/checkout@v2
- uses: s-weigand/setup-conda@v1
with:
+ conda-channels: conda-forge
python-version: ${{ matrix.python-version }}
- if: ${{ runner.os == 'Linux' && matrix.python-version != '3.11' }}
+ if: ${{ !contains(fromJSON(env.not_in_conda), matrix.python-version) }}
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- if: ${{ runner.os != 'Linux' || matrix.python-version == '3.11' }}
+ if: ${{ contains(fromJSON(env.not_in_conda), matrix.python-version) }}
- name: Cache pip
uses: actions/cache@v3
with:
- name: Install dependencies
run: |
python --version
+ python -m ensurepip
python -m pip install --upgrade pip setuptools wheel
pip --version
- pip install --upgrade virtualenv "tox < 4"
+ pip install --upgrade virtualenv "tox >= 3.15, < 4"
- name: Set TOXENV
run: |
import os, sys
* Python 3.11.
+* CI(GHActions): Install all Python and PyPy versions from ``conda-forge``.
+
Version 0.3.0 (2021-09-24)
--------------------------