Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ci/travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if [ "$USE_PYPY_RELEASE_VERSION" != "" ]; then
source testenv/bin/activate
fi

pip install -U pip setuptools wheel
pip install -U pip setuptools wheel pep517

if [ "$CHECK_FORMATTING" = "1" ]; then
pip install yapf==${YAPF_VERSION}
Expand All @@ -77,8 +77,8 @@ EOF
exit 0
fi

python setup.py sdist --formats=zip
pip install dist/*.zip
python -m pep517.build --source --out-dir dist/ .
pip install dist/*.tar.gz

if [ "$CHECK_DOCS" = "1" ]; then
pip install -Ur ci/rtd-requirements.txt
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@ filename = "docs/source/history.rst"
directory = "newsfragments"
underlines = ["-", "~", "^"]
issue_format = "`#{issue} <https://github.com/python-trio/trimeter/issues/{issue}>`__"

[build-system]
requires = [
"setuptools >= 50.0.3",
"wheel >= 0.35.1",
]
build-backend = "setuptools.build_meta"