Skip to content

Commit

Permalink
Fix pyproject.toml to use git tags
Browse files Browse the repository at this point in the history
  • Loading branch information
adosar committed May 1, 2024
1 parent 9d9bfb4 commit fd0619d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -42,7 +42,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/
Expand All @@ -67,7 +67,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/
Expand All @@ -90,7 +90,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/
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ authors = [
{name="Antonios P. Sarikas", email="[email protected]"},
]

[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm

license = {text = "GPL-3.0-only"}
description = "Package for parallel calculation of energy voxels."
readme = "README.md"
Expand Down

0 comments on commit fd0619d

Please sign in to comment.