Skip to content

Commit 8f0e087

Browse files
committed
bump to 1.10.0
1 parent 946b402 commit 8f0e087

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,11 @@ or find a python distribution for Mac OS with this support.
176176
Because 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
183185
vi dbt/adapters/sqlite/__version__.py # update version
184186
vi setup.py # update dbt-core dependency if appropriate
@@ -187,13 +189,13 @@ vi setup.py # update dbt-core dependency if appropriate
187189
rm -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
198200
git commit
199201
git tag vXXX

dbt/adapters/sqlite/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '1.9.1'
1+
version = '1.10.0'

0 commit comments

Comments
 (0)