Skip to content

Commit e450165

Browse files
committed
chore(release): mypyc build fixes
1 parent 7b23e05 commit e450165

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,13 @@ jobs:
159159
- name: Test standard wheel installation
160160
run: |
161161
uv venv test-standard
162-
uv pip install --find-links dist-standard/ sqlspec
162+
uv pip install --python test-standard --find-links dist-standard/ sqlspec
163163
uv run --python test-standard python -c "import sqlspec; print('Standard wheel OK')"
164164
165165
- name: Test mypyc wheel installation
166166
run: |
167167
uv venv test-mypyc
168-
uv pip install --find-links dist-mypyc/ sqlspec
168+
uv pip install --python test-mypyc --find-links dist-mypyc/ sqlspec
169169
uv run --python test-mypyc python -c "import sqlspec; print('MyPyC wheel OK')"
170170
171171
publish-release:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ authors = [{ name = "Cody Fincher", email = "cody@litestar.dev" }]
33
dependencies = [
44
"typing-extensions",
55
"eval_type_backport; python_version < \"3.10\"",
6-
"click",
76
"sqlglot>=19.9.0",
87
"mypy-extensions",
8+
"rich-click",
99
]
1010
description = "SQL Experiments in Python"
1111
license = "MIT"

uv.lock

Lines changed: 3 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)