Skip to content

Commit

Permalink
use uv 0.4.30, closes #120 closes #112 (#121)
Browse files Browse the repository at this point in the history
* use uv 0.4.30, closes #120 closes #112

* revert tool versions

* add python 3.12 to test matrix

---------

Co-authored-by: ihoubr <ivo.houbrechts@nike.com>
  • Loading branch information
houbie and ihoubr authored Nov 5, 2024
1 parent 6bb41f9 commit 615a0e8
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ Ubuntu, Windows ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" , "3.13" ]
include:
- os: Ubuntu
image: ubuntu-latest
Expand Down
70 changes: 26 additions & 44 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ requires-python = ">=3.8"
dependencies = [
"userpath>=1.9",
"tomlkit>=0.13",
"uv==0.3.1",
"uv==0.4.30",
]

[tool.pdm]
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def test_run(tmp_dir, capfd):
)
env.install()
captured = capfd.readouterr()
assert "Creating virtualenv" in captured.err
assert "Creating virtual environment" in captured.err

env.run("virtualenv --version", env={}, cwd=".")
captured = capfd.readouterr()
Expand Down

0 comments on commit 615a0e8

Please sign in to comment.