Changeset cc3897a in trunk


Ignore:
Timestamp:
2018-08-07T14:42:23Z (7 years ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
1643124, 3723945, f576575f
Parents:
90769fe0 (diff), 436cb8fd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jean-Paul Calderone <exarkun@…> (2018-08-07 14:42:23)
git-committer:
GitHub <noreply@…> (2018-08-07 14:42:23)
Message:

Merge pull request #517 from exarkun/2908.towncrier

Configure and require towncrier for NEWS.rst maintenance

Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified NEWS.rst

    r90769fe0 rcc3897a  
    55==================================
    66
     7.. towncrier start line
    78Release 1.13.0 (05-August-2018)
    89'''''''''''''''''''''''''''''''
  • TabularUnified setup.py

    r90769fe0 rcc3897a  
    269269              "hypothesis >= 3.6.1",
    270270              "treq",
     271              "towncrier",
    271272          ],
    272273          "tor": [
  • TabularUnified tox.ini

    r90769fe0 rcc3897a  
    5151         python misc/coding_tools/find-trailing-spaces.py -r src static misc setup.py
    5252         python misc/coding_tools/check-miscaptures.py
     53
     54         # With pip >= 10 the existence of pyproject.toml (which we are
     55         # required to have to configure towncrier) triggers a "build
     56         # isolation" mode which prevents anything from working.  Avoid
     57         # triggering that pip behavior by keeping the towncrier configuration
     58         # somewhere else and only bringing it in when it's actually needed
     59         # (after pip is done).
     60         #
     61         # Some discussion is available at
     62         # https://github.com/pypa/pip/issues/5696
     63         mv towncrier.pyproject.toml pyproject.toml
     64
     65         # If towncrier.check fails, you forgot to add a towncrier news
     66         # fragment explaining the change in this branch.  Create one at
     67         # `newsfragments/<ticket>.<change type>` with some text for the news
     68         # file.  See pyproject.toml for legal <change type> values.
     69         python -m towncrier.check
    5370
    5471[testenv:deprecations]
Note: See TracChangeset for help on using the changeset viewer.