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/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9f96f4a..049a5d2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ repos: # - id: prettier # exclude: '^src/dso/templates/.*\.yaml$' # prettier messes with jinja2 templating here - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.7 + rev: v0.6.8 hooks: - id: ruff types_or: [python, pyi, jupyter] 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",