a3s-code 4.2.8__tar.gz → 5.0.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: a3s-code
3
- Version: 4.2.8
3
+ Version: 5.0.0
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,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/AI45Lab/Code/releases/tag/v<version>`
9
9
  # at import time.
10
- version = "4.2.8"
10
+ version = "5.0.0"
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"}
@@ -10,7 +10,7 @@ per-user cache, and prepends the cache to `sys.path` so the rest of
10
10
 
11
11
  Override the cache location via `A3S_CODE_CACHE_DIR`. Override the
12
12
  release source via `A3S_CODE_RELEASES_BASE_URL` (default points at the
13
- GitHub Releases page for `AI45Lab/Code`). Skip the integrity check via
13
+ GitHub Releases page for `A3S-Lab/Code`). Skip the integrity check via
14
14
  `A3S_CODE_SKIP_HASH_CHECK=1` (not recommended outside of CI).
15
15
  """
16
16
 
@@ -31,9 +31,9 @@ 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__ = "4.2.8"
34
+ __version__ = "5.0.0"
35
35
 
36
- _DEFAULT_BASE_URL = "https://github.com/AI45Lab/Code/releases/download"
36
+ _DEFAULT_BASE_URL = "https://github.com/A3S-Lab/Code/releases/download"
37
37
  _REQUEST_TIMEOUT_S = 120
38
38
  _USER_AGENT = f"a3s-code-bootstrap/{__version__}"
39
39
  _LOAD_LOCK = threading.Lock()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: a3s-code
3
- Version: 4.2.8
3
+ Version: 5.0.0
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
File without changes
File without changes
File without changes