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.
176
176
Because I forget...
177
177
178
178
```
179
- # assumes ~/.pypirc is already set up
179
+ # create venv if it doesn't yet exist
180
+ uv venv dbt-sqlite-build
180
181
181
- workon dbt-sqlite-devel
182
+ # activate venv
183
+ source dbt-sqlite-build/bin/activate
182
184
183
185
vi dbt/adapters/sqlite/__version__.py # update version
184
186
vi setup.py # update dbt-core dependency if appropriate
@@ -187,13 +189,13 @@ vi setup.py # update dbt-core dependency if appropriate
187
189
rm -rf dist/ build/ *.egg-info
188
190
189
191
# 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
191
193
192
194
# build
193
- python -m build
195
+ uv build
194
196
195
197
# upload to PyPI
196
- python -m twine upload dist/*
198
+ uv publish
197
199
198
200
git commit
199
201
git 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