From b0d367910e0f281ba16a273713bf6ea51381dfcd Mon Sep 17 00:00:00 2001 From: Ryan Morshead Date: Fri, 11 Sep 2020 18:10:20 -0700 Subject: [PATCH 1/2] closes: #622 pep517.build is deprecated see: https://github.com/pypa/pep517/pull/83 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 24af5b78..3c4e6a1f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,8 +7,8 @@ python: - 3.7 install: - pip install --upgrade pip - - pip install pep517 - - python -m pep517.build . + - pip install build + - python -m build . - pip install dist/traitlets*.whl - pip install --pre --upgrade traitlets[test] pytest pytest-cov codecov - test -z ${TEST_DEPS} || pip install --upgrade ${TEST_DEPS} From 63f1151adea3e994aa8549817a0b9e6d0c22acf1 Mon Sep 17 00:00:00 2001 From: Ryan Morshead Date: Fri, 11 Sep 2020 18:24:46 -0700 Subject: [PATCH 2/2] update README to use python-build --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 00c96dcc..13d01872 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,6 @@ of the HasTraits instance. ### Release build: ```bash -$ pip install pep517 -$ python -m pep517.build . +$ pip install build +$ python -m build . ```