Skip to content

Commit bc62b7d

Browse files
committed
UNPICK fix
1 parent c8cf308 commit bc62b7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

FIX_01.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
The regression stems from the workflow/build steps installing **dev dependencies** in **free-threaded Python environments (3.13t/3.14t)**.
33

4-
The dev group includes `pygithub`, which depends on `pynacl==1.5.0`. **PyNaCl does not currently provide wheels for free-threaded CPython**, and building from source requires `libsodium` tooling that isn’t available in the build image, causing the following command to fail:
4+
The dev group used to include `pygithub`, which depends on `pynacl==1.5.0`. **PyNaCl does not currently provide wheels for free-threaded CPython**, and building from source requires `libsodium` tooling that isn’t available in the build image, causing the following command to fail:
55

66
```bash
77
uv run --no-project maturin build ... --interpreter python
@@ -14,4 +14,4 @@ uv run --no-project maturin build ... --interpreter python
1414
* Stop installing **dev dependencies** during wheel builds
1515

1616
* Only install what’s needed to run `maturin`
17-
* **OR** make `pygithub` optional / non-dev for build environments so it isn’t pulled into free-threaded builds
17+
* **OR** make `pygithub` optional / non-dev for build environments so it isn’t pulled into free-threaded builds (now handled via the `release` dependency group)

0 commit comments

Comments
 (0)