pulp-python 3.13.5__py3-none-any.whl → 3.13.6__py3-none-any.whl
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.
- pulp_python/app/__init__.py +1 -1
- pulp_python/app/replica.py +2 -1
- pulp_python/tests/functional/api/test_consume_content.py +1 -0
- pulp_python/tests/functional/api/test_domains.py +1 -0
- pulp_python/tests/functional/api/test_pypi_apis.py +0 -20
- pulp_python/tests/functional/constants.py +9 -5
- {pulp_python-3.13.5.dist-info → pulp_python-3.13.6.dist-info}/METADATA +1 -1
- {pulp_python-3.13.5.dist-info → pulp_python-3.13.6.dist-info}/RECORD +12 -12
- {pulp_python-3.13.5.dist-info → pulp_python-3.13.6.dist-info}/WHEEL +1 -1
- {pulp_python-3.13.5.dist-info → pulp_python-3.13.6.dist-info}/entry_points.txt +0 -0
- {pulp_python-3.13.5.dist-info → pulp_python-3.13.6.dist-info}/licenses/LICENSE +0 -0
- {pulp_python-3.13.5.dist-info → pulp_python-3.13.6.dist-info}/top_level.txt +0 -0
pulp_python/app/__init__.py
CHANGED
pulp_python/app/replica.py
CHANGED
|
@@ -31,7 +31,8 @@ class PythonReplicator(Replicator):
|
|
|
31
31
|
def url(self, upstream_distribution):
|
|
32
32
|
# Ignore distributions that are only pull-through
|
|
33
33
|
repo, pub = upstream_distribution["repository"], upstream_distribution["publication"]
|
|
34
|
-
|
|
34
|
+
repo_ver = upstream_distribution.get("repository_version")
|
|
35
|
+
if repo or pub or repo_ver:
|
|
35
36
|
return super().url(upstream_distribution)
|
|
36
37
|
|
|
37
38
|
return None
|
|
@@ -224,26 +224,6 @@ def test_twine_upload(
|
|
|
224
224
|
check=True,
|
|
225
225
|
)
|
|
226
226
|
|
|
227
|
-
# Test re-uploading same packages with --skip-existing works
|
|
228
|
-
output = subprocess.run(
|
|
229
|
-
(
|
|
230
|
-
"twine",
|
|
231
|
-
"upload",
|
|
232
|
-
"--repository-url",
|
|
233
|
-
url,
|
|
234
|
-
dist_dir / "*",
|
|
235
|
-
"-u",
|
|
236
|
-
username,
|
|
237
|
-
"-p",
|
|
238
|
-
password,
|
|
239
|
-
"--skip-existing",
|
|
240
|
-
),
|
|
241
|
-
capture_output=True,
|
|
242
|
-
check=True,
|
|
243
|
-
text=True
|
|
244
|
-
)
|
|
245
|
-
assert output.stdout.count("Skipping") == 2
|
|
246
|
-
|
|
247
227
|
|
|
248
228
|
@pytest.mark.parallel
|
|
249
229
|
def test_simple_redirect_with_publications(
|
|
@@ -124,18 +124,22 @@ PYTHON_LG_PROJECT_SPECIFIER = [
|
|
|
124
124
|
"aiohttp", # matches 7
|
|
125
125
|
"bcrypt", # matches 8
|
|
126
126
|
"celery", # matches 13
|
|
127
|
+
"crane", # matches 0
|
|
127
128
|
"Django", # matches 31
|
|
129
|
+
"pulp-2to3-migration", # matches 2
|
|
128
130
|
"pytz", # matches 6
|
|
129
131
|
"scipy", # matches 23
|
|
132
|
+
"setuptools", # matches 2
|
|
130
133
|
"shelf-reader", # matches 2
|
|
134
|
+
"twine", # matches 14
|
|
131
135
|
]
|
|
132
|
-
PYTHON_LG_PACKAGE_COUNT =
|
|
136
|
+
PYTHON_LG_PACKAGE_COUNT = 108
|
|
133
137
|
PYTHON_LG_FIXTURE_SUMMARY = {PYTHON_CONTENT_NAME: PYTHON_LG_PACKAGE_COUNT}
|
|
134
138
|
PYTHON_LG_FIXTURE_COUNTS = {
|
|
135
|
-
"latest_3":
|
|
136
|
-
"sdist":
|
|
137
|
-
"bdist_wheel":
|
|
138
|
-
"multi":
|
|
139
|
+
"latest_3": 59,
|
|
140
|
+
"sdist": 36,
|
|
141
|
+
"bdist_wheel": 72,
|
|
142
|
+
"multi": 36, # keep_latest=1, package_types="bdist_wheel", prereleases=False
|
|
139
143
|
}
|
|
140
144
|
|
|
141
145
|
DJANGO_LATEST_3 = 4 # latest version has 2 dists, each other has 1
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
pulp_python/__init__.py,sha256=BfGFMACxdZWJMiAhkn0BW-k_iKULe-nVCcQ6g0sX89k,65
|
|
2
2
|
pulp_python/pytest_plugin.py,sha256=VYkopWyPqdeh7nQKh-v9fZFIRNHNBnB-p8-0FOyq_KM,7515
|
|
3
|
-
pulp_python/app/__init__.py,sha256=
|
|
3
|
+
pulp_python/app/__init__.py,sha256=VE5k2JIaOz7IX9geYy9NCdT3OZPwu2FIjP5886CIK-M,2488
|
|
4
4
|
pulp_python/app/global_access_conditions.py,sha256=y8NwdgAoaB5iY7EzSBoCQOgVopSHpVMc55FKJmCGGlI,1081
|
|
5
5
|
pulp_python/app/modelresource.py,sha256=dogoBWibBmQyFpcV-Hp1lu7D2WwSECa5PEShWSIg7mg,1248
|
|
6
6
|
pulp_python/app/models.py,sha256=NiwmFI0cQmSn3zdiR1dCv-QCqaUB7iMTTOY42r0ugIU,10440
|
|
7
|
-
pulp_python/app/replica.py,sha256=
|
|
7
|
+
pulp_python/app/replica.py,sha256=LOMWtJP_QOKoli3uATsuSlbUJVgwmNCqcfv_96rpwuQ,1956
|
|
8
8
|
pulp_python/app/serializers.py,sha256=BkqQ7Pg6vMAh2McoLetY-yFB8U0VOrAPRPMIHmPlGXc,14922
|
|
9
9
|
pulp_python/app/settings.py,sha256=F-TFLcol3nXK2IHpb9yIv-KIXj2OPibQ8FuyCCCFCT0,227
|
|
10
10
|
pulp_python/app/urls.py,sha256=kqS_rEVxrATP9qJzxefUy6so7CqQf0074K_0x7k_bQw,1086
|
|
@@ -39,27 +39,27 @@ pulp_python/app/webserver_snippets/apache.conf,sha256=3frHSl2YV_8pJPscaFxMVo7Hmx
|
|
|
39
39
|
pulp_python/app/webserver_snippets/nginx.conf,sha256=gMqZGFefsTJVVx9YRxpHVS7NMEll9CzOseYdtLr3Avc,344
|
|
40
40
|
pulp_python/tests/__init__.py,sha256=4Yz43a8s-KyhdHFb5eEhIIvH72807Y84uAHnG5bO5y0,31
|
|
41
41
|
pulp_python/tests/functional/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
-
pulp_python/tests/functional/constants.py,sha256=
|
|
42
|
+
pulp_python/tests/functional/constants.py,sha256=tm3TtrlC2ppEv3Ans1HIKBnABc-6rPZjvr8WuUmQ7p0,12446
|
|
43
43
|
pulp_python/tests/functional/utils.py,sha256=JPCEAqdbLFx89OC8J0WBtot1QD4go7hgUhG-8CWg8tQ,2705
|
|
44
44
|
pulp_python/tests/functional/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
pulp_python/tests/functional/api/test_auto_publish.py,sha256=uCIt4LsO61oMk3bDs3LMQDJI8zkKqvY0b1uX16bTxzM,1747
|
|
46
|
-
pulp_python/tests/functional/api/test_consume_content.py,sha256=
|
|
46
|
+
pulp_python/tests/functional/api/test_consume_content.py,sha256=QUOZ_bQ_Ortzitc7sjlMEJzRhPm00wayxjZvEeK18jI,1000
|
|
47
47
|
pulp_python/tests/functional/api/test_crud_content_unit.py,sha256=-rRQasHnNVhipVfzozjhXme-hDcdnBIleOeSJ1XmsNg,6742
|
|
48
48
|
pulp_python/tests/functional/api/test_crud_publications.py,sha256=FyjkyM3qMzo-Um6GZP-qGssz4sZPBx34dD2Oux3qlm0,4448
|
|
49
49
|
pulp_python/tests/functional/api/test_crud_remotes.py,sha256=uRo51X3MDWIls4Fdxw5unvU47_JyyLEg2w41ByvDcmY,5811
|
|
50
|
-
pulp_python/tests/functional/api/test_domains.py,sha256=
|
|
50
|
+
pulp_python/tests/functional/api/test_domains.py,sha256=qlWJNHUHNKiaMGBFk78XP4dmBNaVoRhs88GGz46126E,10428
|
|
51
51
|
pulp_python/tests/functional/api/test_download_content.py,sha256=msnsKpU6TGT8eNu6e0uFa4fte6hj85OTexwOHdf66-c,4950
|
|
52
52
|
pulp_python/tests/functional/api/test_export_import.py,sha256=-nxRdaG_adFgJTkilLLsVmAeH6f74ludb6qqZrm_bGA,4597
|
|
53
53
|
pulp_python/tests/functional/api/test_full_mirror.py,sha256=zQGMl19xSoefTIdso6NXBjfoWuA5wDCHZ7YdPsYmKYg,2877
|
|
54
|
-
pulp_python/tests/functional/api/test_pypi_apis.py,sha256=
|
|
54
|
+
pulp_python/tests/functional/api/test_pypi_apis.py,sha256=FB5F6jqa5cHjXHyBB-WQyaC7Uc-C62jlV9-WAFAaEfM,12208
|
|
55
55
|
pulp_python/tests/functional/api/test_rbac.py,sha256=mC_cH69cWktEgTpPnqRfoR6cVl2QrWwTP-_fpH6unrA,10511
|
|
56
56
|
pulp_python/tests/functional/api/test_repair.py,sha256=_kTa4XwxUuBbRlVFofSXWnBg1edbCnm1AEE5elIvuW8,2833
|
|
57
57
|
pulp_python/tests/functional/api/test_sync.py,sha256=EYMnscBllEQxzZAKRv2QcrT2n_r5ny0NJzsH5XrjsSY,12645
|
|
58
58
|
pulp_python/tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
pulp_python/tests/unit/test_models.py,sha256=TBI0yKsrdbnJSPeBFfxSqhXK7zaNvR6qg5JehGH3Pds,229
|
|
60
|
-
pulp_python-3.13.
|
|
61
|
-
pulp_python-3.13.
|
|
62
|
-
pulp_python-3.13.
|
|
63
|
-
pulp_python-3.13.
|
|
64
|
-
pulp_python-3.13.
|
|
65
|
-
pulp_python-3.13.
|
|
60
|
+
pulp_python-3.13.6.dist-info/licenses/LICENSE,sha256=2ylvL381vKOhdO-w6zkrOxe9lLNBhRQpo9_0EbHC_HM,18046
|
|
61
|
+
pulp_python-3.13.6.dist-info/METADATA,sha256=rieHwzNb3YhHVWDmMi39J_aAryLpVTJZheejgSDrZhg,1582
|
|
62
|
+
pulp_python-3.13.6.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
63
|
+
pulp_python-3.13.6.dist-info/entry_points.txt,sha256=HvqLEXjw_dS5jqAwnE5JiRZFE6f-y5SRtitKLPml2To,115
|
|
64
|
+
pulp_python-3.13.6.dist-info/top_level.txt,sha256=X0hXgXc_bpbiKqVrkt8jD5_QEiQviKbHDwveQcOcJjo,12
|
|
65
|
+
pulp_python-3.13.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|