File tree 2 files changed +10
-15
lines changed
2 files changed +10
-15
lines changed Original file line number Diff line number Diff line change 96
96
java-version : ${{ matrix.java }}
97
97
98
98
# "Setup Python" can be skipped if jupyter notebook analysis-results aren't needed
99
- - name : (Python Setup) Setup Cache for Conda package manager Miniforge
100
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
101
- env :
102
- # Increase this value to reset cache if etc/example-environment.yml has not changed
103
- # Reference: https://github.com/conda-incubator/setup-miniconda#caching
104
- CACHE_NUMBER : 0
105
- with :
106
- path : ~/conda_pkgs_dir
107
- key :
108
- ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-environments-${{hashFiles('**/environment.yml', '.github/workflows/*.yml') }}
109
-
110
99
- name : (Python Setup) Use version ${{ matrix.python }} with Conda package manager Miniforge
111
100
uses : conda-incubator/setup-miniconda@505e6394dae86d6a5c7fbb6e3fb8938e3e863830 # v3
112
101
with :
@@ -115,10 +104,14 @@ jobs:
115
104
activate-environment : codegraph
116
105
environment-file : ./jupyter/environment.yml
117
106
auto-activate-base : false
118
- use-only-tar-bz2 : true # IMPORTANT: This needs to be set for caching to work properly!
107
+ show-channel-urls : true
119
108
- name : (Python Setup) Conda environment info
120
109
shell : bash -el {0}
121
- run : conda info
110
+ run : |
111
+ conda info
112
+ conda list
113
+ conda config --show-sources
114
+ conda config --show
122
115
123
116
- name : (Code Analysis Setup) Setup Cache Analysis Downloads
124
117
uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
Original file line number Diff line number Diff line change 1
1
name : codegraph
2
2
channels :
3
+ - conda-forge/label/python_rc # Needed on Mac since Python >= 3.12
3
4
- conda-forge
4
5
dependencies :
5
6
- python=3.12.*
7
+ - _python_rc=* # Needed on Mac since Python >= 3.12
6
8
- jupyter=1.1.*
7
9
- matplotlib=3.10.*
8
- - nbconvert=7.2 .*
9
- - nbconvert-webpdf=7.2 .*
10
+ - nbconvert=7.16 .*
11
+ - nbconvert-webpdf=7.16 .*
10
12
- numpy=1.26.*
11
13
- pandas=2.2.*
12
14
- pip=25.0.*
You can’t perform that action at this time.
0 commit comments