Skip to content

Commit e7cc485

Browse files
authored
Merge branch 'master' into addjson
2 parents f438761 + d921f4e commit e7cc485

File tree

7 files changed

+670
-3
lines changed

7 files changed

+670
-3
lines changed

dev-requirements.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
pyfakefs
12
pytest
23
pytest-aiohttp
34
pytest-cov

dev-requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,10 @@ propcache==0.2.1 \
452452
# via
453453
# aiohttp
454454
# yarl
455+
pyfakefs==5.9.1 \
456+
--hash=sha256:b3c1f391f1990112ff6b0642182e75f07a6d7fcd81cf1357277680bf6c9b8a84 \
457+
--hash=sha256:ca02a1441dc77d7512bebfe4224b32f2127e83c45672f5fe2c02c33d4284bc70
458+
# via -r dev-requirements.in
455459
pytest==8.3.5 \
456460
--hash=sha256:c69214aa47deac29fad6c2a4f590b9c4a9fdb16a403176fe154b79c0b4d4d820 \
457461
--hash=sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845

mypy-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
aiohttp==3.12.6
22
alive_progress # untyped :(
33
mypy==1.16.0
4+
pyfakefs
45
pytest
56
pytest-mock
67
python-gnupg # untyped :(

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -842,8 +842,8 @@ typing-extensions==4.12.2 \
842842
# pydantic
843843
# pydantic-core
844844
# pyopenssl
845-
urllib3==2.3.0 \
846-
--hash=sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df
845+
urllib3==2.5.0 \
846+
--hash=sha256:e6b01673c0fa6a13e374b50871808eb3bf7046c4b125b216f6bf1cc604cff0dc
847847
# via requests
848848
yarl==1.18.3 \
849849
--hash=sha256:00e5a1fea0fd4f5bfa7440a47eff01d9822a65b4488f7cff83155a0f31a2ecba \

run_release.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,11 @@ def check_pyspecific(db: ReleaseShelf) -> None:
533533
f"SOURCE_URI = 'https://github.com/python/cpython/tree/{expected_branch}/%s'"
534534
)
535535
if expected != line.strip():
536-
raise ReleaseException("SOURCE_URI is incorrect")
536+
raise ReleaseException(
537+
f"SOURCE_URI is incorrect (it needs changing before beta 1):\n"
538+
f"expected: {expected}\n"
539+
f"got : {line.strip()}"
540+
)
537541

538542

539543
def bump_version(db: ReleaseShelf) -> None:

0 commit comments

Comments
 (0)