File tree Expand file tree Collapse file tree 3 files changed +12
-35
lines changed
Expand file tree Collapse file tree 3 files changed +12
-35
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2121 python -m pip install -e .
2222 - name : Build package
2323 run : |
24- python -m build
24+ python -m build --sdist --wheel
2525 python -m twine check dist/*
26+ - name : Upload package to TestPyPI
27+ run : |
28+ python -m twine upload -r testpypi dist/* --verbose
29+ env :
30+ TWINE_USERNAME : ${{ secrets.TWINE_USERNAME_TEST }}
31+ TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD_TEST }}
2632 - name : Upload package to PyPI
2733 run : |
2834 python -m twine upload -r pypi dist/* --verbose
Original file line number Diff line number Diff line change 66setup (
77 ext_modules = cythonize ([
88 Extension (
9- "tdamapper.utils._metrics" ,
10- ["src/tdamapper/utils/_metrics.pyx" ])
11- ]))
9+ name = "tdamapper.utils._metrics" ,
10+ sources = ["src/tdamapper/utils/_metrics.pyx" ],
11+ ),
12+ ])
13+ )
You can’t perform that action at this time.
0 commit comments