Skip to content

Commit 09690a8

Browse files
committed
more precise python version to ensure updated GLIB library
1 parent 7431887 commit 09690a8

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
ref: ${{ github.ref }}
2727

2828
- name: Set up Python
29-
uses: actions/setup-python@v4
29+
uses: actions/setup-python@v5
3030
with:
31-
python-version: "3.9"
31+
python-version: '3.9.13'
3232

3333
# - name: Upgrading pip
3434
# run: pip install --upgrade pip

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v3
2323

24+
- name: Set up Python
25+
uses: actions/setup-python@v5
26+
with:
27+
python-version: '3.9.13'
28+
2429
# - name: Upgrading pip
2530
# run: pip install --upgrade pip
2631

27-
- name: Install cython
28-
run: pip install cython numpy==1.26
29-
3032
- name: Installing requirements
3133
run: pip install -r ./requirements.txt
3234

0 commit comments

Comments
 (0)