a3s-code 8.3.0__tar.gz → 8.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {a3s_code-8.3.0 → a3s_code-8.5.1}/PKG-INFO +11 -9
- {a3s_code-8.3.0 → a3s_code-8.5.1}/README.md +10 -8
- {a3s_code-8.3.0 → a3s_code-8.5.1}/pyproject.toml +1 -1
- {a3s_code-8.3.0 → a3s_code-8.5.1}/src/a3s_code/_bootstrap.py +1 -1
- {a3s_code-8.3.0 → a3s_code-8.5.1}/src/a3s_code.egg-info/PKG-INFO +11 -9
- {a3s_code-8.3.0 → a3s_code-8.5.1}/setup.cfg +0 -0
- {a3s_code-8.3.0 → a3s_code-8.5.1}/src/a3s_code/__init__.py +0 -0
- {a3s_code-8.3.0 → a3s_code-8.5.1}/src/a3s_code/py.typed +0 -0
- {a3s_code-8.3.0 → a3s_code-8.5.1}/src/a3s_code.egg-info/SOURCES.txt +0 -0
- {a3s_code-8.3.0 → a3s_code-8.5.1}/src/a3s_code.egg-info/dependency_links.txt +0 -0
- {a3s_code-8.3.0 → a3s_code-8.5.1}/src/a3s_code.egg-info/top_level.txt +0 -0
- {a3s_code-8.3.0 → a3s_code-8.5.1}/tests/test_bootstrap.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: a3s-code
|
|
3
|
-
Version: 8.
|
|
3
|
+
Version: 8.5.1
|
|
4
4
|
Summary: A3S Code Python SDK — pure-Python bootstrap that fetches the native wheel from GitHub Releases
|
|
5
5
|
Author: A3S Lab
|
|
6
6
|
License: MIT
|
|
@@ -29,14 +29,15 @@ platform from the project's
|
|
|
29
29
|
the wheel's sha256 against the release manifest, extracts the compiled
|
|
30
30
|
extension into a per-user cache, and exposes the normal `a3s_code` API.
|
|
31
31
|
|
|
32
|
-
The v8.
|
|
32
|
+
The v8.4.0 release uses one CPython 3.10 stable-ABI (`cp310-abi3`) wheel per
|
|
33
33
|
platform. That wheel is installable by CPython 3.10, 3.11, 3.12, 3.13, and
|
|
34
|
-
3.14. Supported native targets are macOS arm64/x86_64, Linux
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
when reading older
|
|
34
|
+
3.14. Supported native targets are macOS arm64/x86_64, Linux x86_64
|
|
35
|
+
(glibc 2.28+), Linux arm64 (glibc 2.39+ / `manylinux_2_39_aarch64`), and
|
|
36
|
+
Windows arm64/x86_64. Every supported wheel contains its target Moli sidecar
|
|
37
|
+
and provenance record. Linux musl is intentionally omitted because upstream
|
|
38
|
+
Moli publishes no musl asset; use a system/explicit browser or another backend
|
|
39
|
+
there. The loader still falls back to exact per-minor names when reading older
|
|
40
|
+
release manifests.
|
|
40
41
|
|
|
41
42
|
Subsequent imports use the cached extension. Cache lives under a
|
|
42
43
|
platform-specific directory, `~/.cache/a3s-code/<version>/<platform-tag>/`
|
|
@@ -59,7 +60,8 @@ through PyPI.
|
|
|
59
60
|
|
|
60
61
|
- macOS arm64 (Apple Silicon, macOS 11+)
|
|
61
62
|
- macOS x86_64 (Intel, macOS 12+)
|
|
62
|
-
- Linux x86_64
|
|
63
|
+
- Linux x86_64 (glibc 2.28+)
|
|
64
|
+
- Linux arm64 (glibc 2.39+)
|
|
63
65
|
- Windows x86_64 and arm64
|
|
64
66
|
|
|
65
67
|
CPython 3.10, 3.11, 3.12, 3.13, and 3.14.
|
|
@@ -7,14 +7,15 @@ platform from the project's
|
|
|
7
7
|
the wheel's sha256 against the release manifest, extracts the compiled
|
|
8
8
|
extension into a per-user cache, and exposes the normal `a3s_code` API.
|
|
9
9
|
|
|
10
|
-
The v8.
|
|
10
|
+
The v8.4.0 release uses one CPython 3.10 stable-ABI (`cp310-abi3`) wheel per
|
|
11
11
|
platform. That wheel is installable by CPython 3.10, 3.11, 3.12, 3.13, and
|
|
12
|
-
3.14. Supported native targets are macOS arm64/x86_64, Linux
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
when reading older
|
|
12
|
+
3.14. Supported native targets are macOS arm64/x86_64, Linux x86_64
|
|
13
|
+
(glibc 2.28+), Linux arm64 (glibc 2.39+ / `manylinux_2_39_aarch64`), and
|
|
14
|
+
Windows arm64/x86_64. Every supported wheel contains its target Moli sidecar
|
|
15
|
+
and provenance record. Linux musl is intentionally omitted because upstream
|
|
16
|
+
Moli publishes no musl asset; use a system/explicit browser or another backend
|
|
17
|
+
there. The loader still falls back to exact per-minor names when reading older
|
|
18
|
+
release manifests.
|
|
18
19
|
|
|
19
20
|
Subsequent imports use the cached extension. Cache lives under a
|
|
20
21
|
platform-specific directory, `~/.cache/a3s-code/<version>/<platform-tag>/`
|
|
@@ -37,7 +38,8 @@ through PyPI.
|
|
|
37
38
|
|
|
38
39
|
- macOS arm64 (Apple Silicon, macOS 11+)
|
|
39
40
|
- macOS x86_64 (Intel, macOS 12+)
|
|
40
|
-
- Linux x86_64
|
|
41
|
+
- Linux x86_64 (glibc 2.28+)
|
|
42
|
+
- Linux arm64 (glibc 2.39+)
|
|
41
43
|
- Windows x86_64 and arm64
|
|
42
44
|
|
|
43
45
|
CPython 3.10, 3.11, 3.12, 3.13, and 3.14.
|
|
@@ -7,7 +7,7 @@ name = "a3s-code"
|
|
|
7
7
|
# Keep in sync with crates/code core release. The bootstrap loader fetches
|
|
8
8
|
# the matching native wheel from `https://github.com/A3S-Lab/Code/releases/tag/v<version>`
|
|
9
9
|
# at import time.
|
|
10
|
-
version = "8.
|
|
10
|
+
version = "8.5.1"
|
|
11
11
|
description = "A3S Code Python SDK — pure-Python bootstrap that fetches the native wheel from GitHub Releases"
|
|
12
12
|
readme = "README.md"
|
|
13
13
|
license = {text = "MIT"}
|
|
@@ -37,7 +37,7 @@ from typing import Iterator, Optional
|
|
|
37
37
|
|
|
38
38
|
# Version is the bootstrap's own version, which equals the matching native
|
|
39
39
|
# wheel version on GH Releases. Bumped by the release workflow.
|
|
40
|
-
__version__ = "8.
|
|
40
|
+
__version__ = "8.5.1"
|
|
41
41
|
|
|
42
42
|
_DEFAULT_BASE_URL = "https://github.com/A3S-Lab/Code/releases/download"
|
|
43
43
|
_REQUEST_TIMEOUT_S = 120
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: a3s-code
|
|
3
|
-
Version: 8.
|
|
3
|
+
Version: 8.5.1
|
|
4
4
|
Summary: A3S Code Python SDK — pure-Python bootstrap that fetches the native wheel from GitHub Releases
|
|
5
5
|
Author: A3S Lab
|
|
6
6
|
License: MIT
|
|
@@ -29,14 +29,15 @@ platform from the project's
|
|
|
29
29
|
the wheel's sha256 against the release manifest, extracts the compiled
|
|
30
30
|
extension into a per-user cache, and exposes the normal `a3s_code` API.
|
|
31
31
|
|
|
32
|
-
The v8.
|
|
32
|
+
The v8.4.0 release uses one CPython 3.10 stable-ABI (`cp310-abi3`) wheel per
|
|
33
33
|
platform. That wheel is installable by CPython 3.10, 3.11, 3.12, 3.13, and
|
|
34
|
-
3.14. Supported native targets are macOS arm64/x86_64, Linux
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
when reading older
|
|
34
|
+
3.14. Supported native targets are macOS arm64/x86_64, Linux x86_64
|
|
35
|
+
(glibc 2.28+), Linux arm64 (glibc 2.39+ / `manylinux_2_39_aarch64`), and
|
|
36
|
+
Windows arm64/x86_64. Every supported wheel contains its target Moli sidecar
|
|
37
|
+
and provenance record. Linux musl is intentionally omitted because upstream
|
|
38
|
+
Moli publishes no musl asset; use a system/explicit browser or another backend
|
|
39
|
+
there. The loader still falls back to exact per-minor names when reading older
|
|
40
|
+
release manifests.
|
|
40
41
|
|
|
41
42
|
Subsequent imports use the cached extension. Cache lives under a
|
|
42
43
|
platform-specific directory, `~/.cache/a3s-code/<version>/<platform-tag>/`
|
|
@@ -59,7 +60,8 @@ through PyPI.
|
|
|
59
60
|
|
|
60
61
|
- macOS arm64 (Apple Silicon, macOS 11+)
|
|
61
62
|
- macOS x86_64 (Intel, macOS 12+)
|
|
62
|
-
- Linux x86_64
|
|
63
|
+
- Linux x86_64 (glibc 2.28+)
|
|
64
|
+
- Linux arm64 (glibc 2.39+)
|
|
63
65
|
- Windows x86_64 and arm64
|
|
64
66
|
|
|
65
67
|
CPython 3.10, 3.11, 3.12, 3.13, and 3.14.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|