Skip to content

Commit

Permalink
Updated build target, replacing setuptools with build
Browse files Browse the repository at this point in the history
  • Loading branch information
heuer committed Oct 26, 2023
1 parent 25faca8 commit 718c811
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ def build_release(session):
git('fetch')
git('fetch', '--tags')
git('checkout', version)
session.install('setuptools', 'wheel')
session.install('build', 'wheel')
shutil.rmtree('dist', ignore_errors=True)
session.run('python', 'setup.py', 'sdist', 'bdist_wheel')
session.run('python', '-m', 'build')
git('checkout', 'master')


Expand Down

0 comments on commit 718c811

Please sign in to comment.