From 6b8fd63af882493a111c0cbdfa3e76505f18997c Mon Sep 17 00:00:00 2001 From: Gregor Sturm Date: Tue, 1 Oct 2024 14:39:48 +0200 Subject: [PATCH] Fix pre-commit --- .github/workflows/release.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 85cb18c..d2da62d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest environment: name: pypi - url: https://pypi.org/p/dso-cli + url: https://pypi.org/p/dso-cli permissions: id-token: write # IMPORTANT: this permission is mandatory for trusted publishing steps: diff --git a/pyproject.toml b/pyproject.toml index ce2c561..bf0e178 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,9 @@ [build-system] build-backend = "hatchling.build" -requires = [ "hatchling", "hatch-vcs" ] +requires = [ "hatch-vcs", "hatchling" ] [project] name = "dso" -dynamic = ["version"] description = "Data Science Operations on top of dvc" readme = "README.md" license = { file = "LICENSE" } @@ -23,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] +dynamic = [ "version" ] dependencies = [ "dvc", "jinja2",