pywmspro 0.2.2__tar.gz → 0.2.4__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,28 @@ 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
74
+ env:
75
+ GH_TOKEN: "${{ github.token }}"
50
76
  ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pywmspro
3
- Version: 0.2.2
3
+ Version: 0.2.4
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]
@@ -480,7 +480,6 @@ wheels = [
480
480
 
481
481
  [[package]]
482
482
  name = "pywmspro"
483
- version = "0.2.2"
484
483
  source = { editable = "." }
485
484
  dependencies = [
486
485
  { name = "aiohttp" },
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