a3s-code 6.9.0__tar.gz → 7.0.2__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-6.9.0 → a3s_code-7.0.2}/PKG-INFO +1 -1
- {a3s_code-6.9.0 → a3s_code-7.0.2}/pyproject.toml +1 -1
- {a3s_code-6.9.0 → a3s_code-7.0.2}/src/a3s_code/_bootstrap.py +1 -1
- {a3s_code-6.9.0 → a3s_code-7.0.2}/src/a3s_code.egg-info/PKG-INFO +1 -1
- {a3s_code-6.9.0 → a3s_code-7.0.2}/tests/test_bootstrap.py +1 -1
- {a3s_code-6.9.0 → a3s_code-7.0.2}/README.md +0 -0
- {a3s_code-6.9.0 → a3s_code-7.0.2}/setup.cfg +0 -0
- {a3s_code-6.9.0 → a3s_code-7.0.2}/src/a3s_code/__init__.py +0 -0
- {a3s_code-6.9.0 → a3s_code-7.0.2}/src/a3s_code/py.typed +0 -0
- {a3s_code-6.9.0 → a3s_code-7.0.2}/src/a3s_code.egg-info/SOURCES.txt +0 -0
- {a3s_code-6.9.0 → a3s_code-7.0.2}/src/a3s_code.egg-info/dependency_links.txt +0 -0
- {a3s_code-6.9.0 → a3s_code-7.0.2}/src/a3s_code.egg-info/top_level.txt +0 -0
|
@@ -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 = "
|
|
10
|
+
version = "7.0.2"
|
|
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"}
|
|
@@ -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__ = "
|
|
34
|
+
__version__ = "7.0.2"
|
|
35
35
|
|
|
36
36
|
_DEFAULT_BASE_URL = "https://github.com/A3S-Lab/Code/releases/download"
|
|
37
37
|
_REQUEST_TIMEOUT_S = 120
|
|
@@ -108,7 +108,7 @@ class CacheDirTests(unittest.TestCase):
|
|
|
108
108
|
|
|
109
109
|
def test_default_uses_xdg_or_home(self):
|
|
110
110
|
cache = _bootstrap._cache_root()
|
|
111
|
-
self.
|
|
111
|
+
self.assertEqual(cache.parts[-2:], ("a3s-code", _bootstrap.__version__))
|
|
112
112
|
|
|
113
113
|
def test_xdg_cache_home_honored(self):
|
|
114
114
|
os.environ["XDG_CACHE_HOME"] = "/tmp/xdg-test"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|