Skip to content

Commit 04f65ce

Browse files
committed
Added a test for the Python version
1 parent 997be54 commit 04f65ce

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.github/workflows/slow-checks.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ jobs:
5959
- int-linux-x64-4core-gpu-t4-ubuntu24.04-1
6060
- int-linux-x64-4core-ubuntu24.04-1
6161
- int-linux-x64-2core-ubuntu24.04-1
62+
python-version:
63+
- "3.10"
64+
- "3.12"
6265
name: Install Pipx on ${{ matrix.runner }}
6366
runs-on:
6467
labels: ${{ matrix.runner }}
@@ -69,6 +72,11 @@ jobs:
6972

7073
- name: Setup Python & Poetry Environment
7174
uses: ./.github/actions/python-environment
75+
with:
76+
python-version: "${{ matrix.python-version }}"
7277

7378
- name: Poetry version
7479
run: poetry --version
80+
81+
- name: Validate Python version
82+
run: poetry run python --version | grep "${{ matrix.python-version }}"

doc/changes/changes_1.7.3.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,8 @@
22
## Bugfixes
33

44
* #523: Fixed `pipx` installation for older versions of `pip`
5+
6+
## Refactorings
7+
8+
* #525: Added tests for installing `pipx` on different GitHub runners
9+

doc/changes/unreleased.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Unreleased
22

3-
## Refactorings
3+
## Bugfixes
44

5-
* #525: Added tests for installing `pipx` on different GitHub runners
5+
* #527: Use correct Python version in actions/python-environment

0 commit comments

Comments
 (0)