We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1423d1 commit 9415a56Copy full SHA for 9415a56
.github/workflows/python-publish.yml
@@ -21,13 +21,13 @@ jobs:
21
with:
22
python-version: '3.12'
23
24
- # Step 3: Install GCC 8
25
- - name: Install GCC 8
+ # Step 3: Install GCC 9
+ - name: Install GCC 9
26
run: |
27
sudo apt-get update
28
- sudo apt-get install -y g++-8 gcc-8
29
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 50
30
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 50
+ sudo apt-get install -y g++-9 gcc-9
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 50
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 50
31
32
# Step 4: Install pybind11 and build dependencies
33
- name: Install build dependencies
0 commit comments