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} 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 . ```