-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove outdated make.bat
- Loading branch information
Showing
13 changed files
with
128 additions
and
42 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
================== | ||
Changelog | ||
================== | ||
|
||
Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.<patch>``), | ||
but with minor syntax differences to satisfy python package | ||
`version specifiers <https://packaging.python.org/en/latest/specifications/version-specifiers/>`_. | ||
|
||
Until a stable version is released (end of beta), new versions may contain backward-incompatible changes, | ||
but we will strive to deprecate features first instead of immediately removal. | ||
After that, breaking changes will only be introduced in major versions. | ||
|
||
.. include:: changelog/changelog_body.rst |
Empty file.
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,26 @@ | ||
This directory contains "news fragments" which are short files that contain a small **ReST**-formatted | ||
text that will be added to the next ``CHANGELOG``. | ||
|
||
The ``CHANGELOG`` will be read by **users**, so this description should be aimed to pytest users | ||
instead of describing internal changes which are only relevant to the developers. | ||
|
||
Make sure to use full sentences in the **past or present tense** and use punctuation, examples:: | ||
|
||
Improved verbose diff output with sequences. | ||
|
||
Terminal summary statistics now use multiple colors. | ||
|
||
Each file should be named like ``<ISSUE>.<TYPE>.rst``, where | ||
``<ISSUE>`` is an issue number, and ``<TYPE>`` is one of: | ||
|
||
* ``breaking``: a change which may break existing suites, such as feature removal or behavior change. | ||
* ``deprecation``: feature deprecation. | ||
* ``feature``: new user facing features, like new command-line options and new behavior. | ||
* ``bugfix``: fixes a bug. | ||
* ``other``: any | ||
|
||
So for example: ``123.feature.rst``, ``456.bugfix.rst``. | ||
|
||
If your PR fixes an issue, use that number here. If there is no issue, | ||
then after you submit the PR and get the PR number you can add a | ||
changelog using that instead. |
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,44 @@ | ||
{% if render_title %} | ||
---------------------------------------------------- | ||
|
||
|
||
.. _v{{ versiondata.version }}: | ||
|
||
`{{ versiondata.version }} <https://github.com/reagento/adaptix/tree/v{{ versiondata.version }}>`_ -- {{ versiondata.date }} | ||
{{ top_underline * ((versiondata.version * 2 + versiondata.date)|length + 52) }} | ||
{% endif %} | ||
{% 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] %} | ||
.. _v{{ versiondata.version }}-{{ definitions[category]['name'] }}: | ||
|
||
{{ definitions[category]['name'] }} | ||
{{ underline * definitions[category]['name']|length }} | ||
|
||
{% if definitions[category]['showcontent'] %} | ||
{% for text, values in sections[section][category].items() %} | ||
- {{ text }}{% if values %} ({{ values|join(', ') }}){% endif %} | ||
|
||
{% 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 %} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
coverage==7.3.3 | ||
pip-tools==7.3.0 | ||
setuptools==69.0.0 | ||
towncrier==23.11.0 | ||
|
||
-r runner.txt | ||
-r lint.txt | ||
|
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