Skip to content

Commit 32e214d

Browse files
committed
fix sqlite-utils
1 parent 9c4bd88 commit 32e214d

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ datasette-release: $(TARGET_WHEELS_RELEASE) python/datasette_sqlite_regex/setup.
9595
rm $(TARGET_WHEELS_RELEASE)/datasette* || true
9696
pip3 wheel python/datasette_sqlite_regex/ --no-deps -w $(TARGET_WHEELS_RELEASE)
9797

98+
bindings/sqlite-utils/pyproject.toml: bindings/sqlite-utils/pyproject.toml.tmpl VERSION
99+
VERSION=$(VERSION) envsubst < $< > $@
100+
echo "✅ generated $@"
101+
98102
bindings/sqlite-utils/sqlite_utils_sqlite_regex/version.py: bindings/sqlite-utils/sqlite_utils_sqlite_regex/version.py.tmpl VERSION
99103
VERSION=$(VERSION) envsubst < $< > $@
100104
echo "✅ generated $@"
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
2-
name = "sqlite-utils-sqlite-hello"
3-
version = "0.1.0-alpha.61"
2+
name = "sqlite-utils-sqlite-regex"
3+
version = "0.2.3-alpha.11"
44
description = "TODO"
55
readme = "README.md"
66
authors = [{name = "Alex Garcia"}]
@@ -9,13 +9,13 @@ classifiers = []
99

1010
dependencies = [
1111
"sqlite-utils",
12-
"sqlite-hello"
12+
"sqlite-regex"
1313
]
1414

1515
[project.urls]
16-
Homepage = "https://github.com/asg017/sqlite-hello"
17-
Changelog = "https://github.com/asg017/sqlite-hello/releases"
18-
Issues = "https://github.com/asg017/sqlite-hello/issues"
16+
Homepage = "https://github.com/asg017/sqlite-regex"
17+
Changelog = "https://github.com/asg017/sqlite-regex/releases"
18+
Issues = "https://github.com/asg017/sqlite-regex/issues"
1919

2020
[project.entry-points.sqlite_utils]
21-
sqlite_hello = "sqlite_utils_sqlite_hello"
21+
sqlite_regex = "sqlite_utils_sqlite_regex"

0 commit comments

Comments
 (0)