File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -176,9 +176,11 @@ or find a python distribution for Mac OS with this support.
176176Because I forget...
177177
178178```
179- # assumes ~/.pypirc is already set up
179+ # create venv if it doesn't yet exist
180+ uv venv dbt-sqlite-build
180181
181- workon dbt-sqlite-devel
182+ # activate venv
183+ source dbt-sqlite-build/bin/activate
182184
183185vi dbt/adapters/sqlite/__version__.py # update version
184186vi setup.py # update dbt-core dependency if appropriate
@@ -187,13 +189,13 @@ vi setup.py # update dbt-core dependency if appropriate
187189rm -rf dist/ build/ *.egg-info
188190
189191# make sure tools are up to date
190- python -m pip install --upgrade build setuptools wheel twine
192+ uv pip install --upgrade build setuptools wheel twine
191193
192194# build
193- python -m build
195+ uv build
194196
195197# upload to PyPI
196- python -m twine upload dist/*
198+ uv publish
197199
198200git commit
199201git tag vXXX
Original file line number Diff line number Diff line change 1- version = '1.9.1 '
1+ version = '1.10.0 '
You can’t perform that action at this time.
0 commit comments