diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index e35a9264..1e2aca59 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -2,8 +2,8 @@ name: Wheels on: push: - # tags: - # - "*" + tags: + - "*" jobs: build_sdist: @@ -71,6 +71,6 @@ jobs: with: name: artifact path: dist - # - uses: pypa/gh-action-pypi-publish@master - # with: - # password: ${{ secrets.PYPI_TOKEN }} + - uses: pypa/gh-action-pypi-publish@master + with: + password: ${{ secrets.PYPI_TOKEN }} diff --git a/setup.py b/setup.py index 35507990..d4c51689 100644 --- a/setup.py +++ b/setup.py @@ -21,14 +21,11 @@ setup( name="adani", version=versioneer.get_version(), - # cmdclass=versioneer.get_cmdclass(), description="Code computing approximate DIS N3LO coefficients", author="Niccolò Laurenti", license="AGPLv3", packages=find_packages(where="inc"), package_dir={"": "inc"}, - # package_data={'': ['CMakeLists.txt']}, - # include_package_data = True, cmake_install_dir="inc/adani", cmake_args=['-DPYTHON_ONLY:BOOL=ON'], python_requires=">=3.8",