You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -45,16 +45,16 @@ The following operating systems and architectures are supported:
45
45
Releases in this library are handled a bit different from what one might be used to. This library does currently not
46
46
follow a versioning schema comparable to sematic versioning. This might however change in the future.
47
47
48
-
Right now, every tagged release is compromised of the Python interpreter version, the [python-standalone](https://github.com/indygreg/python-build-standalone)
49
-
and a build number. For example, the release version `v0.0.0-3.11.6-20231002-2` belongs to Python version 3.11.6,
50
-
the [20231002](https://github.com/indygreg/python-build-standalone/releases/tag/20231002) version of python-standalone
48
+
Right now, every tagged release is compromised of the Python interpreter version, the [python-standalone](https://github.com/astral-sh/python-build-standalone)
49
+
and a build number. For example, the release version `v0.0.0-3.11.6-20241219-2` belongs to Python version 3.11.6,
50
+
the [20241219](https://github.com/astral-sh/python-build-standalone/releases/tag/20241219) version of python-standalone
51
51
and build number 2. The release version currently always has v0.0.0 as its own version.
52
52
53
53
The way versioning is handled might result in popular dependency management tools (e.g. dependabot) to not work as you
54
54
might require it. Please watch out to not accidentally upgrade your Python version!
55
55
56
56
## How it works
57
-
This library uses the standalone Python distributions found at https://github.com/indygreg/python-build-standalone as
57
+
This library uses the standalone Python distributions found at https://github.com/astral-sh/python-build-standalone as
58
58
the base.
59
59
60
60
The `./hack/build-tag.sh` script is used to invoke `python/generate` and `pip/generate`, which then downloads, extracts
Copy file name to clipboardexpand all lines: python/generate/main.go
+2-2
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ import (
17
17
)
18
18
19
19
var (
20
-
pythonStandaloneVersion=flag.String("python-standalone-version", "", "specify the python-standalone version. Check https://github.com/indygreg/python-build-standalone/releases/ for available options.")
20
+
pythonStandaloneVersion=flag.String("python-standalone-version", "", "specify the python-standalone version. Check https://github.com/astral-sh/python-build-standalone/releases/ for available options.")
21
21
pythonVersion=flag.String("python-version", "", "specify the python version.")
22
22
preparePath=flag.String("prepare-path", filepath.Join(os.TempDir(), "python-download"), "specify the path where the python executables are downloaded and prepared. automatically creates a temporary directory if unset")
23
23
runPrepare=flag.Bool("prepare", true, "if set, python executables will be downloaded and prepared for packing at the configured path")
0 commit comments