Skip to content

Commit f3878ee

Browse files
Joseph-Edwardsjames-d-mitchell
authored andcommitted
Use requirements archive
1 parent d1e2fce commit f3878ee

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ concurrency:
77

88
jobs:
99
run-tests:
10-
name: ${{ matrix.os }} Python ${{ matrix.python_version }}
10+
name: ${{ matrix.os }} Python 3.${{ matrix.python_minor_version }}
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python_version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
14+
python_minor_version: ["10", "11", "12", "13", "14"]
1515
os: [ubuntu-latest, macOS-latest]
1616
include:
1717
- os: ubuntu-latest
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
environment-name: libsemigroups
3535
create-args: >-
36-
python=${{ matrix.python_version }}
36+
python=3.${{ matrix.python_minor_version }}
3737
fmt
3838
pylint
3939
ruff
@@ -61,9 +61,9 @@ jobs:
6161
run: |
6262
python --version
6363
pip3 --version
64-
- name: "Pip installing requirements.txt . . ."
64+
- name: "Pip installing requirements . . ."
6565
run: |
66-
pip3 install -r requirements.txt
66+
pip3 install -r requirements-archive/py${{ matrix.python_minor_version }}-requirements.txt
6767
- name: "Pip3 installing libsemigroups_pybind11 . . ."
6868
run: |
6969
echo $PKG_CONFIG_PATH

0 commit comments

Comments
 (0)