pywmspro 0.2.2__tar.gz → 0.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,8 @@ jobs:
6
6
  runs-on: ubuntu-latest
7
7
  steps:
8
8
  - uses: actions/checkout@v4
9
+ with:
10
+ fetch-depth: 0
9
11
  - uses: astral-sh/setup-uv@v5
10
12
  - run: uv build
11
13
  - uses: actions/upload-artifact@v4
@@ -47,4 +49,26 @@ jobs:
47
49
  - uses: pypa/gh-action-pypi-publish@release/v1
48
50
  with:
49
51
  print-hash: true
52
+ github-release:
53
+ if: github.ref_type == 'tag'
54
+ runs-on: ubuntu-latest
55
+ needs: build
56
+ permissions:
57
+ contents: write
58
+ id-token: write
59
+ steps:
60
+ - uses: actions/download-artifact@v4
61
+ with:
62
+ name: Packages
63
+ path: dist
64
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
65
+ with:
66
+ inputs: dist/*
67
+ - run: >
68
+ gh release create "${{ github.ref }}" dist/*
69
+ --target "${{ github.sha }}"
70
+ --generate-notes
71
+ --verify-tag
72
+ --prerelease
73
+ --draft
50
74
  ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pywmspro
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Python library for WMS WebControl pro API
5
5
  Author-email: Marc Hoersken <info@marc-hoersken.de>
6
6
  License-Expression: Apache-2.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pywmspro"
3
- version = "0.2.2"
3
+ dynamic = ["version"]
4
4
  description = "Python library for WMS WebControl pro API"
5
5
  license = "Apache-2.0"
6
6
  authors = [
@@ -17,8 +17,15 @@ dependencies = [
17
17
  [tool.hatch.build.targets.wheel]
18
18
  packages = ["wmspro"]
19
19
 
20
+ [tool.hatch.version]
21
+ source = "vcs"
22
+
23
+ [tool.hatch.version.raw-options]
24
+ git_describe_command = ["git", "describe", "--tags"]
25
+ local_scheme = "no-local-version"
26
+
20
27
  [build-system]
21
- requires = ["hatchling"]
28
+ requires = ["hatchling", "hatch-vcs"]
22
29
  build-backend = "hatchling.build"
23
30
 
24
31
  [dependency-groups]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes