Skip to content

Commit 366b13f

Browse files
authored
v1.1.1
version 1.1.1
2 parents a58a541 + f9403f7 commit 366b13f

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.github/workflows/pypi.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,19 @@ jobs:
88
name: Build and publish package to PyPI
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- name: Check out repository code
12+
uses: actions/checkout@v4
13+
1214
- name: Set up Python
13-
uses: actions/setup-python@v1
15+
uses: astral-sh/setup-uv@v5
1416
with:
15-
python-version: "3.9"
16-
- name: Install poetry
17-
run: |
18-
curl -fsS -o get-poetry.py https://install.python-poetry.org
19-
python get-poetry.py -y
17+
enable-cache: true
18+
python-version: "3.11"
19+
20+
- name: Build
21+
run: uv build
22+
2023
- name: Publish
2124
env:
22-
PYPI_TOKEN: ${{ secrets.pypi_token }}
23-
run: |
24-
$HOME/.local/bin/poetry config pypi-token.pypi $PYPI_TOKEN
25-
$HOME/.local/bin/poetry publish --build
25+
PYPI_TOKEN: ${{ secrets.pypi_password }}
26+
run: uv publish --token $PYPI_TOKEN

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyobs-aravis"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "pyobs module for Aravis cameras"
55
authors = [{ name = "Tim-Oliver Husser", email = "thusser@uni-goettingen.de" }]
66
requires-python = ">=3.11"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)