Skip to content

Commit 305d298

Browse files
authored
mraba/update-python_publish-workflow (#520)
SNOW-1519875: update publish branch workflow for v1.6.1
1 parent 64fafbb commit 305d298

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/python-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
python-version: '3.x'
3131
- name: Install dependencies
3232
run: |
33-
python -m pip install --upgrade pip
34-
pip install build
33+
python -m pip install -U uv
34+
python -m uv pip install -U hatch
3535
- name: Build package
36-
run: python -m build
36+
run: python -m hatch build --clean
3737
- name: Publish package
38-
uses: pypa/gh-action-pypi-publish@e53eb8b103ffcb59469888563dc324e3c8ba6f06
38+
uses: pypa/gh-action-pypi-publish@release/v1
3939
with:
4040
user: __token__
4141
password: ${{ secrets.PYPI_API_TOKEN }}

DESCRIPTION.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ Source code is also available at:
99

1010
# Release Notes
1111

12+
- v1.6.1(July 9, 2024)
13+
14+
- Update internal project workflow with pypi publishing
15+
1216
- v1.6.0(July 8, 2024)
1317

1418
- support for installing with SQLAlchemy 2.0.x

src/snowflake/sqlalchemy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
#
44
# Update this for the versions
55
# Don't change the forth version number from None
6-
VERSION = "1.6.0"
6+
VERSION = "1.6.1"

0 commit comments

Comments
 (0)