processcube-etw-library 2026.1.19b0__tar.gz → 2026.1.19.144244b0__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.
Files changed (26) hide show
  1. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/.github/workflows/build_and_publish.yml +9 -8
  2. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/.gitignore +1 -0
  3. {processcube_etw_library-2026.1.19b0/src/processcube_etw_library.egg-info → processcube_etw_library-2026.1.19.144244b0}/PKG-INFO +1 -1
  4. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0/src/processcube_etw_library.egg-info}/PKG-INFO +1 -1
  5. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/.python-version +0 -0
  6. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/README.md +0 -0
  7. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/pyproject.toml +0 -0
  8. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/setup.cfg +0 -0
  9. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/__init__.py +0 -0
  10. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/create_external_task_client.py +0 -0
  11. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/etw_app.py +0 -0
  12. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/health/__init__.py +0 -0
  13. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/health/built_in.py +0 -0
  14. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/health/check.py +0 -0
  15. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/health/handlers.py +0 -0
  16. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/health/models.py +0 -0
  17. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/health/registry.py +0 -0
  18. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/health/routes.py +0 -0
  19. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/identity_provider.py +0 -0
  20. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/server_config.py +0 -0
  21. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library/typed_handler.py +0 -0
  22. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library.egg-info/SOURCES.txt +0 -0
  23. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library.egg-info/dependency_links.txt +0 -0
  24. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library.egg-info/requires.txt +0 -0
  25. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/src/processcube_etw_library.egg-info/top_level.txt +0 -0
  26. {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.144244b0}/uv.lock +0 -0
@@ -20,26 +20,27 @@ jobs:
20
20
  steps:
21
21
  - uses: actions/checkout@v6
22
22
 
23
+ - name: Set up Python
24
+ uses: actions/setup-python@v6
25
+ with:
26
+ python-version-file: ".python-version"
27
+
23
28
  - name: Install uv
24
29
  uses: astral-sh/setup-uv@v7
25
30
  with:
26
31
  enable-cache: true
27
32
  version: "0.9.26"
28
33
 
29
- - name: Set up Python
30
- uses: actions/setup-python@v6
31
- with:
32
- python-version-file: ".python-version"
33
-
34
34
  - name: Set version
35
+ id: set_version
35
36
  run: |
36
- DATE_VERSION=$(date +'%Y.%m.%d')
37
+ DATE_VERSION=$(date +'%Y.%m.%d.%H%M%S')
37
38
  if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
38
39
  VERSION="${DATE_VERSION}"
39
40
  else
40
41
  VERSION="${DATE_VERSION}-beta"
41
42
  fi
42
- echo "VERSION=${VERSION}" >> $GITHUB_ENV
43
+ echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT
43
44
  echo "Setting version to: ${VERSION}"
44
45
 
45
46
  - name: Debug GitHub context
@@ -55,7 +56,7 @@ jobs:
55
56
  - name: Build
56
57
  run: uv build
57
58
  env:
58
- SETUPTOOLS_SCM_PRETEND_VERSION: ${{ env.VERSION }}
59
+ SETUPTOOLS_SCM_PRETEND_VERSION: ${{ steps.set_version.outputs.VERSION }}
59
60
 
60
61
  - name: Publish to PyPI
61
62
  run: uv publish --token ${{ secrets.PYPI_API_TOKEN }}
@@ -5,3 +5,4 @@
5
5
  __pycache__/
6
6
  *.xlsx
7
7
  *.egg-info/
8
+ build/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: processcube-etw-library
3
- Version: 2026.1.19b0
3
+ Version: 2026.1.19.144244b0
4
4
  Summary: A library to create ETW apps with the ProcessCube platform.
5
5
  Author-email: Jeremy Hill <jeremy.hill@profection.de>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: processcube-etw-library
3
- Version: 2026.1.19b0
3
+ Version: 2026.1.19.144244b0
4
4
  Summary: A library to create ETW apps with the ProcessCube platform.
5
5
  Author-email: Jeremy Hill <jeremy.hill@profection.de>
6
6
  License: MIT