@@ -93,12 +93,12 @@ jobs:
9393 - name : Cache conda
9494 uses : actions/cache@v1
9595 env :
96- # Increase this value to reset cache if conda-envs/environment-test-py38 .yml has not changed
96+ # Increase this value to reset cache if conda-envs/environment-test-py39 .yml has not changed
9797 CACHE_NUMBER : 0
9898 with :
9999 path : ~/conda_pkgs_dir
100100 key : ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
101- hashFiles('conda-envs/windows-environment-test-py38 .yml') }}
101+ hashFiles('conda-envs/windows-environment-test-py39 .yml') }}
102102 - name : Cache multiple paths
103103 uses : actions/cache@v2
104104 env :
@@ -116,21 +116,21 @@ jobs:
116116 miniforge-variant : Mambaforge
117117 miniforge-version : latest
118118 mamba-version : " *"
119- activate-environment : pymc-test-py38
119+ activate-environment : pymc-test-py39
120120 channel-priority : strict
121- environment-file : conda-envs/windows-environment-test-py38 .yml
121+ environment-file : conda-envs/windows-environment-test-py39 .yml
122122 use-mamba : true
123123 use-only-tar-bz2 : true # IMPORTANT: This needs to be set for caching to work properly!
124124 - name : Install-pymc
125125 run : |
126- conda activate pymc-test-py38
126+ conda activate pymc-test-py39
127127 pip install -e .
128128 python --version
129129 - name : Run tests
130130 # This job uses a cmd shell, therefore the environment variable syntax is different!
131131 # The ">-" in the next line replaces newlines with spaces (see https://stackoverflow.com/a/66809682).
132132 run : >-
133- conda activate pymc-test-py38 &&
133+ conda activate pymc-test-py39 &&
134134 python -m pytest -vv --cov=pymc_experimental --cov-append --cov-report=xml --cov-report term --durations=50 %TEST_SUBSET%
135135 - name : Upload coverage to Codecov
136136 uses : codecov/codecov-action@v2
0 commit comments