processcube-etw-library 2026.1.19b0__tar.gz → 2026.1.19.145111b0__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.
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/.github/workflows/build_and_publish.yml +9 -15
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/.gitignore +1 -0
- {processcube_etw_library-2026.1.19b0/src/processcube_etw_library.egg-info → processcube_etw_library-2026.1.19.145111b0}/PKG-INFO +1 -1
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0/src/processcube_etw_library.egg-info}/PKG-INFO +1 -1
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/.python-version +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/README.md +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/pyproject.toml +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/setup.cfg +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/__init__.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/create_external_task_client.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/etw_app.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/health/__init__.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/health/built_in.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/health/check.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/health/handlers.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/health/models.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/health/registry.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/health/routes.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/identity_provider.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/server_config.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library/typed_handler.py +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library.egg-info/SOURCES.txt +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library.egg-info/dependency_links.txt +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library.egg-info/requires.txt +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/src/processcube_etw_library.egg-info/top_level.txt +0 -0
- {processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/uv.lock +0 -0
|
@@ -20,42 +20,36 @@ 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}" >> $
|
|
43
|
+
echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT
|
|
43
44
|
echo "Setting version to: ${VERSION}"
|
|
44
45
|
|
|
45
|
-
- name: Debug GitHub context
|
|
46
|
-
run: |
|
|
47
|
-
echo "GITHUB EVENT: ${{ github.event_name }}"
|
|
48
|
-
echo "GITHUB REF: ${{ github.ref }}"
|
|
49
|
-
echo "GITHUB BASE REF: ${{ github.base_ref }}"
|
|
50
|
-
echo "GITHUB HEAD REF: ${{ github.head_ref }}"
|
|
51
|
-
|
|
52
46
|
- name: Install dependencies
|
|
53
47
|
run: uv sync --locked
|
|
54
48
|
|
|
55
49
|
- name: Build
|
|
56
50
|
run: uv build
|
|
57
51
|
env:
|
|
58
|
-
SETUPTOOLS_SCM_PRETEND_VERSION: ${{
|
|
52
|
+
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ steps.set_version.outputs.VERSION }}
|
|
59
53
|
|
|
60
54
|
- name: Publish to PyPI
|
|
61
55
|
run: uv publish --token ${{ secrets.PYPI_API_TOKEN }}
|
{processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/.python-version
RENAMED
|
File without changes
|
{processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/README.md
RENAMED
|
File without changes
|
{processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/pyproject.toml
RENAMED
|
File without changes
|
{processcube_etw_library-2026.1.19b0 → processcube_etw_library-2026.1.19.145111b0}/setup.cfg
RENAMED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|