diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 6cdee4f..e43c384 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -1,4 +1,4 @@ -name: Publish to PyPI +name: PyPI on: push: @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.x" - name: Install pypa/build @@ -27,7 +27,7 @@ jobs: --user - name: prepare python distribution run: | - mkdir build && cd build + mkdir build && cd build cmake ../ cp packaging/pypi/* ../ mv python/hartree_fock/version.py ../python/hartree_fock/version.py @@ -53,7 +53,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: python-package-distributions path: dist/ diff --git a/packaging/pypi/pyproject.toml.in b/packaging/pypi/pyproject.toml.in index 819c76e..0b2ddab 100644 --- a/packaging/pypi/pyproject.toml.in +++ b/packaging/pypi/pyproject.toml.in @@ -13,7 +13,7 @@ authors = [ ] description = "PROVIDE HERE A DESCRIPTION OF YOUR APPLICATION" readme = "README.md" -keywords = [triqs"] +keywords = ["triqs", "hartree_fock"] requires-python = ">=3.7" classifiers = [ "Programming Language :: Python :: 3",