Skip to content

Commit

Permalink
Test venv in 3.13t integration test (#9665)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb authored Dec 6, 2024
1 parent 890fb10 commit 0805242
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -767,11 +767,19 @@ jobs:
run: |
./uv python install -v 3.13t
- name: "Create a virtual environment"
- name: "Create a virtual environment (stdlib)"
run: |
& (./uv python find 3.13t) -m venv .venv
- name: "Check version (stdlib)"
run: |
.venv/Scripts/python --version
- name: "Create a virtual environment (uv)"
run: |
./uv venv -p 3.13t --python-preference only-managed
- name: "Check version"
- name: "Check version (uv)"
run: |
.venv/Scripts/python --version
Expand Down

0 comments on commit 0805242

Please sign in to comment.