Skip to content

Commit

Permalink
use python build module
Browse files Browse the repository at this point in the history
  • Loading branch information
keurfonluu committed Nov 1, 2021
1 parent 48c3815 commit fc80722
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@task
def build(c):
shutil.rmtree("dist", ignore_errors=True)
c.run("python -m pep517.build --source --binary .")
c.run("python -m build --sdist --wheel .")


@task
Expand Down Expand Up @@ -56,8 +56,8 @@ def docstring(c):

@task
def isort(c):
c.run("isort -rc disba")
c.run("isort -rc test")
c.run("isort disba")
c.run("isort test")


@task
Expand Down

0 comments on commit fc80722

Please sign in to comment.