Skip to content

Commit da85bec

Browse files
committed
Fix version and workflow errors
1 parent 570c99c commit da85bec

4 files changed

Lines changed: 3 additions & 12 deletions

File tree

.github/workflows/deploy_testing.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,3 @@ jobs:
3434
- name: Run tests
3535
run: |
3636
uv run coverage run -m unittest discover tests/
37-
uv run coverage report --omit="tests/*.py"
38-
uv run coverage html
39-
40-
- name: Upload report
41-
uses: actions/upload-artifact@v4
42-
with:
43-
name: code-coverage-report${{ matrix.python-version }}
44-
path: htmlcov
45-
if-no-files-found: warn

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "sshkey-tools"
10-
version = "0.10.2"
10+
version = "0.12.2"
1111
description = "A Python module for generating, parsing and handling OpenSSH keys and certificates"
1212
readme = "README.md"
1313
license = { text = "GPL-3.0-or-later" }

src/sshkey_tools/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# The version and build number
1212
# Without specifying a unique number, you cannot overwrite packages in the PyPi repo
13-
__version__ = os.getenv("RELEASE_NAME", "0.10.2-dev" + os.getenv("GITHUB_RUN_ID", ""))
13+
__version__ = os.getenv("RELEASE_NAME", "0.12.2-dev" + os.getenv("GITHUB_RUN_ID", ""))
1414

1515
# Author and license information
1616
__author__ = "Lars Scheibling"

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)