Commit 9780bf9 1 parent bbe041d commit 9780bf9 Copy full SHA for 9780bf9
File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -324,4 +324,3 @@ WSMsgType
324
324
wss
325
325
www
326
326
xxx
327
- yarl
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ def _get_sanitized_long_description(self):
196
196
197
197
@contextmanager
198
198
def _in_temporary_directory (src_dir : Path ) -> t .Iterator [None ]:
199
- with TemporaryDirectory (prefix = '.tmp-yarl -pep517-' ) as tmp_dir :
199
+ with TemporaryDirectory (prefix = '.tmp-frozenlist -pep517-' ) as tmp_dir :
200
200
with chdir_cm (tmp_dir ):
201
201
tmp_src_dir = Path (tmp_dir ) / 'src'
202
202
copytree (src_dir , tmp_src_dir , symlinks = True )
Original file line number Diff line number Diff line change @@ -47,23 +47,23 @@ def sanitize_rst_roles(rst_source_text: str) -> str:
47
47
"""
48
48
issue_substitution_pattern = (
49
49
r"`#\g<issue_number> "
50
- r"<https://github.com/aio-libs/yarl /issues/\g<issue_number>>`__"
50
+ r"<https://github.com/aio-libs/frozenlist /issues/\g<issue_number>>`__"
51
51
)
52
52
53
53
pr_role_regex = r"""(?x)
54
54
:pr:`(?P<pr_number>[^`]+)(?:\s+(.*))?`
55
55
"""
56
56
pr_substitution_pattern = (
57
57
r"`PR #\g<pr_number> "
58
- r"<https://github.com/aio-libs/yarl /pull/\g<pr_number>>`__"
58
+ r"<https://github.com/aio-libs/frozenlist /pull/\g<pr_number>>`__"
59
59
)
60
60
61
61
commit_role_regex = r"""(?x)
62
62
:commit:`(?P<commit_sha>[^`]+)(?:\s+(.*))?`
63
63
"""
64
64
commit_substitution_pattern = (
65
65
r"`\g<commit_sha> "
66
- r"<https://github.com/aio-libs/yarl /commit/\g<commit_sha>>`__"
66
+ r"<https://github.com/aio-libs/frozenlist /commit/\g<commit_sha>>`__"
67
67
)
68
68
69
69
gh_role_regex = r"""(?x)
You can’t perform that action at this time.
0 commit comments