Skip to content

Commit ba0191d

Browse files
authored
fix: update x.x.x (#199)
1 parent 2ee51b6 commit ba0191d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ if using uv:
157157

158158
`[reporoot]/devenv/sync.py`
159159
```py
160-
from devenv.lib import uv
160+
from devenv.lib import config, uv
161161

162162
def main(context: dict[str, str]) -> int:
163163
reporoot = context["reporoot"]
@@ -179,6 +179,9 @@ def main(context: dict[str, str]) -> int:
179179

180180
`[reporoot]/devenv/config.ini`
181181
```ini
182+
[devenv]
183+
minimum_version = 1.22.1
184+
182185
[uv]
183186
darwin_arm64 = https://github.com/astral-sh/uv/releases/download/0.7.21/uv-aarch64-apple-darwin.tar.gz
184187
darwin_arm64_sha256 = c73af7a4e0bcea9b5b593a0c7e5c025ee78d8be3f7cd60bfeadc8614a16c92ef

devenv/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def main(context: Context, argv: Sequence[str] | None = None) -> int:
5555
if args.version is None:
5656
version = "sentry-devenv"
5757
else:
58-
version = "sentry-devenv=={args.version}"
58+
version = f"sentry-devenv=={args.version}"
5959

6060
proc.run(
6161
(f"{constants.root}/venv/bin/pip", "install", "-U", version),

0 commit comments

Comments
 (0)