Skip to content

Commit e039301

Browse files
committed
v5.17.0
1 parent d3c6a5f commit e039301

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/general.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
- name: Install and build site
130130
run: |
131131
echo '!**/*.html' >> .gitignore
132-
make docs
132+
hatch run docs-build
133133
- name: Publush to Github Pages
134134
uses: stefanzweifel/git-auto-commit-action@v5
135135
with:

frictionless/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Version
77

8-
VERSION = "5.16.1"
8+
VERSION = "5.17.0"
99

1010
# General
1111

pyproject.toml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,12 +116,15 @@ dependencies = [
116116
coverage = [
117117
"sensible-browser coverage/index.html",
118118
]
119-
image = [
120-
"docker build --rm -t frictionless-dev .",
121-
]
122119
docs = [
120+
"livemark serve",
121+
]
122+
docs-build = [
123123
"livemark build",
124124
]
125+
image = [
126+
"docker build --rm -t frictionless-dev .",
127+
]
125128
format = [
126129
"ruff check --fix",
127130
"ruff format frictionless",
@@ -150,10 +153,11 @@ test = [
150153
type = [
151154
"pyright frictionless",
152155
]
153-
write = [
154-
"livemark serve",
156+
version = [
157+
"hatch --no-color version"
155158
]
156159

160+
157161
[[tool.hatch.envs.ci.matrix]]
158162
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
159163

0 commit comments

Comments
 (0)