We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c6f5dd commit a0351c0Copy full SHA for a0351c0
Makefile
@@ -32,6 +32,7 @@ venv:
32
echo "To recreate it, remove it first with \`make clean-venv'."; \
33
else \
34
$(PYTHON) -m venv $(VENVDIR); \
35
+ $(VENVDIR)/bin/python3 -m pip install -U pip wheel; \
36
$(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \
37
echo "The venv has been created in the $(VENVDIR) directory"; \
38
fi
generate_rss.py
@@ -167,7 +167,7 @@ def main():
167
joined_authors = ", ".join(f"{name} ({email_address})" for name, email_address in parsed_authors)
168
else:
169
joined_authors = author
170
- url = f"https://peps.python.org/pep-{pep_num:0>4}"
+ url = f"https://peps.python.org/pep-{pep_num:0>4}/"
171
172
item = entry.FeedEntry()
173
item.title(f"PEP {pep_num}: {title}")
0 commit comments