-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
280 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
version: 2 | ||
--- | ||
|
||
formats: all | ||
version: 2 | ||
|
||
build: | ||
image: latest | ||
os: ubuntu-22.04 | ||
tools: | ||
python: >- | ||
3.7 | ||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: requirements/doc.txt | ||
|
||
sphinx: | ||
builder: dirhtml | ||
configuration: docs/conf.py | ||
fail_on_warning: true | ||
|
||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{# TOWNCRIER TEMPLATE #} | ||
{% for section, _ in sections.items() %} | ||
{% set underline = underlines[0] %}{% if section %}{{section}} | ||
{{ underline * section|length }}{% set underline = underlines[1] %} | ||
|
||
{% endif %} | ||
|
||
{% if sections[section] %} | ||
{% for category, val in definitions.items() if category in sections[section]%} | ||
{{ definitions[category]['name'] }} | ||
{{ underline * definitions[category]['name']|length }} | ||
|
||
{% if definitions[category]['showcontent'] %} | ||
{% for text, pr_issue_numbers in sections[section][category].items() %} | ||
- {{ text + '\n' }} | ||
|
||
*Related issues and pull requests on GitHub:* | ||
{{ pr_issue_numbers | join(', ') }}. | ||
|
||
{% endfor %} | ||
{% else %} | ||
- {{ sections[section][category]['']|join(', ') }} | ||
|
||
{% endif %} | ||
{% if sections[section][category]|length == 0 %} | ||
No significant changes. | ||
|
||
{% else %} | ||
{% endif %} | ||
|
||
{% endfor %} | ||
{% else %} | ||
No significant changes. | ||
|
||
|
||
{% endif %} | ||
{% endfor %} | ||
---- | ||
{{ '\n' * 2 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
* | ||
!.TEMPLATE.rst | ||
!.gitignore | ||
!README.rst | ||
!*.bugfix | ||
!*.bugfix.rst | ||
!*.bugfix.*.rst | ||
!*.breaking | ||
!*.breaking.rst | ||
!*.breaking.*.rst | ||
!*.contrib | ||
!*.contrib.rst | ||
!*.contrib.*.rst | ||
!*.deprecation | ||
!*.deprecation.rst | ||
!*.deprecation.*.rst | ||
!*.doc | ||
!*.doc.rst | ||
!*.doc.*.rst | ||
!*.feature | ||
!*.feature.rst | ||
!*.feature.*.rst | ||
!*.misc | ||
!*.misc.rst | ||
!*.misc.*.rst | ||
!*.packaging | ||
!*.packaging.rst | ||
!*.packaging.*.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Upgraded the C-API macros that have been deprecated in | ||
Python 3.9 and later removed in 3.13 -- :user:`webknjaz`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
.. _multidict_changes: | ||
|
||
========= | ||
Changelog | ||
========= | ||
|
||
.. only:: not is_release | ||
|
||
To be included in v\ |release| (if present) | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
.. towncrier-draft-entries:: |release| [UNRELEASED DRAFT] | ||
|
||
Released versions | ||
^^^^^^^^^^^^^^^^^ | ||
|
||
.. include:: ../CHANGES.rst | ||
:start-after: .. towncrier release notes start | ||
|
||
.. include:: ../HISTORY.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.