Fix codon-jit

pull/117/head
Ibrahim Numanagić 2022-12-13 11:05:53 -08:00
parent cfbe6f6ec1
commit ea390f7de9
2 changed files with 3 additions and 3 deletions

View File

@ -244,6 +244,6 @@ jobs:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') && startsWith(matrix.os, 'ubuntu')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_PASSWORD }}
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

View File

@ -61,7 +61,7 @@ jit_extension = Extension(
)
setup(
name="codon",
name="codon-jit",
version=__version__,
install_requires=["cython", "astunparse"],
python_requires=">=3.6",