From e0393010925de1f272f06a143e60f77072eb9caa Mon Sep 17 00:00:00 2001 From: roll Date: Mon, 29 Apr 2024 14:22:08 +0100 Subject: [PATCH] v5.17.0 --- .github/workflows/general.yaml | 2 +- frictionless/settings.py | 2 +- pyproject.toml | 14 +++++++++----- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/general.yaml b/.github/workflows/general.yaml index c9255ea47c..caf7022c22 100644 --- a/.github/workflows/general.yaml +++ b/.github/workflows/general.yaml @@ -129,7 +129,7 @@ jobs: - name: Install and build site run: | echo '!**/*.html' >> .gitignore - make docs + hatch run docs-build - name: Publush to Github Pages uses: stefanzweifel/git-auto-commit-action@v5 with: diff --git a/frictionless/settings.py b/frictionless/settings.py index 84c8b64403..1badf5f486 100644 --- a/frictionless/settings.py +++ b/frictionless/settings.py @@ -5,7 +5,7 @@ # Version -VERSION = "5.16.1" +VERSION = "5.17.0" # General diff --git a/pyproject.toml b/pyproject.toml index c6d3443ba2..011a362302 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -116,12 +116,15 @@ dependencies = [ coverage = [ "sensible-browser coverage/index.html", ] -image = [ - "docker build --rm -t frictionless-dev .", -] docs = [ + "livemark serve", +] +docs-build = [ "livemark build", ] +image = [ + "docker build --rm -t frictionless-dev .", +] format = [ "ruff check --fix", "ruff format frictionless", @@ -150,10 +153,11 @@ test = [ type = [ "pyright frictionless", ] -write = [ - "livemark serve", +version = [ + "hatch --no-color version" ] + [[tool.hatch.envs.ci.matrix]] python = ["3.8", "3.9", "3.10", "3.11", "3.12"]