Skip to content

Commit

Permalink
Merge pull request #61 from 4Catalyzer/fix/use_python3
Browse files Browse the repository at this point in the history
fix: use python3 cmd explicitly in setup.py
  • Loading branch information
c0state authored Nov 4, 2022
2 parents a9ac1f4 + d2f7988 commit 9dc895c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ def run(self):
},
cmdclass={
"clean": system("rm -rf build dist *.egg-info"),
"package": system("python setup.py sdist bdist_wheel"),
"package": system("python3 setup.py sdist bdist_wheel"),
"publish": system("twine upload dist/*"),
"release": system("python setup.py clean package publish"),
"release": system("python3 setup.py clean package publish"),
"test": system("tox"),
},
)

0 comments on commit 9dc895c

Please sign in to comment.