a3s-code 5.3.4__tar.gz → 5.3.5__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-5.3.4 → a3s_code-5.3.5}/PKG-INFO +8 -6
- {a3s_code-5.3.4 → a3s_code-5.3.5}/README.md +4 -2
- {a3s_code-5.3.4 → a3s_code-5.3.5}/pyproject.toml +5 -5
- {a3s_code-5.3.4 → a3s_code-5.3.5}/src/a3s_code/_bootstrap.py +1 -1
- {a3s_code-5.3.4 → a3s_code-5.3.5}/src/a3s_code.egg-info/PKG-INFO +8 -6
- {a3s_code-5.3.4 → a3s_code-5.3.5}/setup.cfg +0 -0
- {a3s_code-5.3.4 → a3s_code-5.3.5}/src/a3s_code/__init__.py +0 -0
- {a3s_code-5.3.4 → a3s_code-5.3.5}/src/a3s_code/py.typed +0 -0
- {a3s_code-5.3.4 → a3s_code-5.3.5}/src/a3s_code.egg-info/SOURCES.txt +0 -0
- {a3s_code-5.3.4 → a3s_code-5.3.5}/src/a3s_code.egg-info/dependency_links.txt +0 -0
- {a3s_code-5.3.4 → a3s_code-5.3.5}/src/a3s_code.egg-info/top_level.txt +0 -0
- {a3s_code-5.3.4 → a3s_code-5.3.5}/tests/test_bootstrap.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: a3s-code
|
|
3
|
-
Version: 5.3.
|
|
3
|
+
Version: 5.3.5
|
|
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
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Repository, https://github.com/
|
|
9
|
-
Project-URL: Issues, https://github.com/
|
|
7
|
+
Project-URL: Homepage, https://github.com/A3S-Lab/Code
|
|
8
|
+
Project-URL: Repository, https://github.com/A3S-Lab/Code
|
|
9
|
+
Project-URL: Issues, https://github.com/A3S-Lab/Code/issues
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -20,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
`pip install a3s-code` ships this small pure-Python package. On first
|
|
21
21
|
`import a3s_code` it downloads the native extension matching your
|
|
22
22
|
interpreter and platform from the project's
|
|
23
|
-
[GitHub Releases](https://github.com/
|
|
23
|
+
[GitHub Releases](https://github.com/A3S-Lab/Code/releases), verifies
|
|
24
24
|
the wheel's sha256 against the release manifest, extracts the compiled
|
|
25
25
|
extension into a per-user cache, and exposes the normal `a3s_code` API.
|
|
26
26
|
|
|
@@ -58,5 +58,7 @@ wheel directly:
|
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
60
|
pip install \
|
|
61
|
-
https://github.com/
|
|
61
|
+
'https://github.com/A3S-Lab/Code/releases/download/v<VERSION>/a3s_code-<VERSION>-cp312-cp312-manylinux_2_28_x86_64.whl'
|
|
62
62
|
```
|
|
63
|
+
|
|
64
|
+
Replace `<VERSION>` with the release to install, for example `5.3.5`.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
`pip install a3s-code` ships this small pure-Python package. On first
|
|
4
4
|
`import a3s_code` it downloads the native extension matching your
|
|
5
5
|
interpreter and platform from the project's
|
|
6
|
-
[GitHub Releases](https://github.com/
|
|
6
|
+
[GitHub Releases](https://github.com/A3S-Lab/Code/releases), verifies
|
|
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
|
|
|
@@ -41,5 +41,7 @@ wheel directly:
|
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
43
|
pip install \
|
|
44
|
-
https://github.com/
|
|
44
|
+
'https://github.com/A3S-Lab/Code/releases/download/v<VERSION>/a3s_code-<VERSION>-cp312-cp312-manylinux_2_28_x86_64.whl'
|
|
45
45
|
```
|
|
46
|
+
|
|
47
|
+
Replace `<VERSION>` with the release to install, for example `5.3.5`.
|
|
@@ -5,9 +5,9 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "a3s-code"
|
|
7
7
|
# Keep in sync with crates/code core release. The bootstrap loader fetches
|
|
8
|
-
# the matching native wheel from `https://github.com/
|
|
8
|
+
# the matching native wheel from `https://github.com/A3S-Lab/Code/releases/tag/v<version>`
|
|
9
9
|
# at import time.
|
|
10
|
-
version = "5.3.
|
|
10
|
+
version = "5.3.5"
|
|
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"}
|
|
@@ -25,9 +25,9 @@ classifiers = [
|
|
|
25
25
|
dependencies = []
|
|
26
26
|
|
|
27
27
|
[project.urls]
|
|
28
|
-
Homepage = "https://github.com/
|
|
29
|
-
Repository = "https://github.com/
|
|
30
|
-
Issues = "https://github.com/
|
|
28
|
+
Homepage = "https://github.com/A3S-Lab/Code"
|
|
29
|
+
Repository = "https://github.com/A3S-Lab/Code"
|
|
30
|
+
Issues = "https://github.com/A3S-Lab/Code/issues"
|
|
31
31
|
|
|
32
32
|
[tool.setuptools.packages.find]
|
|
33
33
|
where = ["src"]
|
|
@@ -31,7 +31,7 @@ from typing import Optional
|
|
|
31
31
|
|
|
32
32
|
# Version is the bootstrap's own version, which equals the matching native
|
|
33
33
|
# wheel version on GH Releases. Bumped by the release workflow.
|
|
34
|
-
__version__ = "5.3.
|
|
34
|
+
__version__ = "5.3.5"
|
|
35
35
|
|
|
36
36
|
_DEFAULT_BASE_URL = "https://github.com/A3S-Lab/Code/releases/download"
|
|
37
37
|
_REQUEST_TIMEOUT_S = 120
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: a3s-code
|
|
3
|
-
Version: 5.3.
|
|
3
|
+
Version: 5.3.5
|
|
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
|
|
7
|
-
Project-URL: Homepage, https://github.com/
|
|
8
|
-
Project-URL: Repository, https://github.com/
|
|
9
|
-
Project-URL: Issues, https://github.com/
|
|
7
|
+
Project-URL: Homepage, https://github.com/A3S-Lab/Code
|
|
8
|
+
Project-URL: Repository, https://github.com/A3S-Lab/Code
|
|
9
|
+
Project-URL: Issues, https://github.com/A3S-Lab/Code/issues
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -20,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
`pip install a3s-code` ships this small pure-Python package. On first
|
|
21
21
|
`import a3s_code` it downloads the native extension matching your
|
|
22
22
|
interpreter and platform from the project's
|
|
23
|
-
[GitHub Releases](https://github.com/
|
|
23
|
+
[GitHub Releases](https://github.com/A3S-Lab/Code/releases), verifies
|
|
24
24
|
the wheel's sha256 against the release manifest, extracts the compiled
|
|
25
25
|
extension into a per-user cache, and exposes the normal `a3s_code` API.
|
|
26
26
|
|
|
@@ -58,5 +58,7 @@ wheel directly:
|
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
60
|
pip install \
|
|
61
|
-
https://github.com/
|
|
61
|
+
'https://github.com/A3S-Lab/Code/releases/download/v<VERSION>/a3s_code-<VERSION>-cp312-cp312-manylinux_2_28_x86_64.whl'
|
|
62
62
|
```
|
|
63
|
+
|
|
64
|
+
Replace `<VERSION>` with the release to install, for example `5.3.5`.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|