Skip to content

Commit d76f8f6

Browse files
authored
prepare release (#39)
* Update version * Use uv instead of twine to upload
1 parent 4cb9880 commit d76f8f6

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: astral-sh/setup-uv@v2
2121
with:
2222
enable-cache: true
23-
version: "0.5.26"
23+
version: "0.6.0"
2424

2525
- name: Install dependencies
2626
run: |
@@ -36,9 +36,8 @@ jobs:
3636
3737
- name: Build and publish
3838
env:
39-
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
40-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
41-
TWINE_NON_INTERACTIVE: "1"
39+
UV_PUBLISH_USERNAME: ${{ secrets.PYPI_USERNAME }}
40+
UV_PUBLISH_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
4241
run: |
4342
uv build
44-
uvx twine upload dist/*
43+
uv publish dist/*

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: astral-sh/setup-uv@v2
3131
with:
3232
enable-cache: true
33-
version: "0.5.26"
33+
version: "0.6.0"
3434

3535
- name: Run tests for ${{ matrix.python-version }}
3636
run: |

src/bibx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"read_wos",
2828
]
2929

30-
__version__ = "0.5.0"
30+
__version__ = "0.6.0"
3131

3232

3333
def query_openalex(

0 commit comments

Comments
 (0)