Skip to content

Commit

Permalink
just a try
Browse files Browse the repository at this point in the history
  • Loading branch information
qdelamea-aneo committed Nov 20, 2024
1 parent 24afbc3 commit 466385f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ jobs:

- name: Install dependencies
run: |
python -m pip install uv
python -m uv pip install build
python -m venv .venv
.venv/bin/python -m pip install uv
.venv/bin/python -m uv pip install build
- name: Build the CLI
run: python -m build --sdist --wheel
run: .venv/bin/python -m build --sdist --wheel

- name: Upload build artifacts
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,4 @@ dev = [
armonik = "armonik_cli.cli:cli"

[tool.setuptools_scm]
version_scheme = "post-release"
version_file = "src/armonik_cli/_version.py"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ def get_local_schema(version: ScmVersion) -> str:
return ""


setup(use_scm_version={"local_scheme": get_local_schema})
setup(use_scm_version={"version_scheme": get_local_schema})

0 comments on commit 466385f

Please sign in to comment.