keyrings.codeartifact 1.3.2__tar.gz → 1.3.4__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.
- {keyrings_codeartifact-1.3.2/keyrings.codeartifact.egg-info → keyrings_codeartifact-1.3.4}/PKG-INFO +4 -4
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/keyrings/codeartifact.py +1 -1
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4/keyrings.codeartifact.egg-info}/PKG-INFO +4 -4
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/keyrings.codeartifact.egg-info/requires.txt +2 -2
- keyrings_codeartifact-1.3.4/requirements.txt +2 -0
- keyrings_codeartifact-1.3.2/requirements.txt +0 -2
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/.github/workflows/release.yml +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/.gitignore +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/LICENSE +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/README.md +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/keyrings/__init__.py +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/keyrings.codeartifact.egg-info/SOURCES.txt +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/keyrings.codeartifact.egg-info/dependency_links.txt +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/keyrings.codeartifact.egg-info/entry_points.txt +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/keyrings.codeartifact.egg-info/top_level.txt +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/pyproject.toml +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/requirements-dev.txt +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/requirements-test.txt +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/setup.cfg +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/tests/__init__.py +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/tests/config/multiple_sections_no_default.cfg +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/tests/config/multiple_sections_with_default.cfg +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/tests/config/single_section.cfg +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/tests/test_backend.py +0 -0
- {keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4}/tests/test_config.py +0 -0
{keyrings_codeartifact-1.3.2/keyrings.codeartifact.egg-info → keyrings_codeartifact-1.3.4}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: keyrings.codeartifact
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.4
|
4
4
|
Summary: Automatically retrieve credentials for AWS CodeArtifact.
|
5
5
|
Author-email: "Joshua M. Keyes" <joshua.michael.keyes@gmail.com>
|
6
6
|
License: MIT License
|
@@ -37,8 +37,8 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
37
37
|
Requires-Python: >=3.8.0
|
38
38
|
Description-Content-Type: text/markdown
|
39
39
|
License-File: LICENSE
|
40
|
-
Requires-Dist: keyring
|
41
|
-
Requires-Dist: boto3
|
40
|
+
Requires-Dist: keyring~=25.0
|
41
|
+
Requires-Dist: boto3~=1.36
|
42
42
|
Provides-Extra: devel
|
43
43
|
Requires-Dist: flake8; extra == "devel"
|
44
44
|
Requires-Dist: black; extra == "devel"
|
@@ -141,7 +141,7 @@ class CodeArtifactBackend(backend.KeyringBackend):
|
|
141
141
|
domain, account, region = host_match.group(1, 2, 3)
|
142
142
|
|
143
143
|
# Validate path and extract repo name
|
144
|
-
path_match = re.
|
144
|
+
path_match = re.match(self.PATH_REGEX, url.path)
|
145
145
|
if not path_match:
|
146
146
|
logging.warning(f"Invalid CodeArtifact PyPI path: {url.path}")
|
147
147
|
return
|
{keyrings_codeartifact-1.3.2 → keyrings_codeartifact-1.3.4/keyrings.codeartifact.egg-info}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: keyrings.codeartifact
|
3
|
-
Version: 1.3.
|
3
|
+
Version: 1.3.4
|
4
4
|
Summary: Automatically retrieve credentials for AWS CodeArtifact.
|
5
5
|
Author-email: "Joshua M. Keyes" <joshua.michael.keyes@gmail.com>
|
6
6
|
License: MIT License
|
@@ -37,8 +37,8 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
37
37
|
Requires-Python: >=3.8.0
|
38
38
|
Description-Content-Type: text/markdown
|
39
39
|
License-File: LICENSE
|
40
|
-
Requires-Dist: keyring
|
41
|
-
Requires-Dist: boto3
|
40
|
+
Requires-Dist: keyring~=25.0
|
41
|
+
Requires-Dist: boto3~=1.36
|
42
42
|
Provides-Extra: devel
|
43
43
|
Requires-Dist: flake8; extra == "devel"
|
44
44
|
Requires-Dist: black; extra == "devel"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|