We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b98722 commit b18b4f6Copy full SHA for b18b4f6
1 file changed
.github/workflows/test_and_release.yml
@@ -14,7 +14,7 @@ jobs:
14
15
- uses: actions/setup-python@v2
16
with:
17
- python-version: "3.9"
+ python-version: "3.12"
18
19
# Install and run pre-commit
20
- run: |
@@ -28,7 +28,7 @@ jobs:
28
strategy:
29
fail-fast: false
30
matrix:
31
- python-version: [3.9]
+ python-version: ["3.12"]
32
config:
33
- {
34
name: "Linux",
@@ -68,7 +68,9 @@ jobs:
68
69
- name: Install OSMesa for Linux
70
if: matrix.config.os == 'ubuntu-latest'
71
- run: sudo apt-get install -y libosmesa6-dev
+ run: |
72
+ sudo apt-get update
73
+ sudo apt-get install -y libosmesa6-dev
74
75
- name: Run Tests
76
run: |
0 commit comments