process-intelligence 10.0.0__tar.gz → 10.0.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.
Files changed (35) hide show
  1. process_intelligence-10.0.3/.github/workflows/main.yml +52 -0
  2. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/.github/workflows/publish.yml +4 -3
  3. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/PKG-INFO +1 -1
  4. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/pyproject.toml +1 -1
  5. {process_intelligence-10.0.0 → process_intelligence-10.0.3/public-repo}/src/models.py +1 -1
  6. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/pyproject.toml +1 -1
  7. {process_intelligence-10.0.0/public-repo → process_intelligence-10.0.3}/src/models.py +1 -1
  8. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/.gitignore +0 -0
  9. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/LICENSE +0 -0
  10. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/README.md +0 -0
  11. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/data/generate_sample.py +0 -0
  12. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/data/sample_log.csv +0 -0
  13. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/.gitignore +0 -0
  14. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/LICENSE +0 -0
  15. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/README.md +0 -0
  16. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/data/generate_sample.py +0 -0
  17. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/data/sample_log.csv +0 -0
  18. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/requirements.txt +0 -0
  19. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/src/__init__.py +0 -0
  20. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/src/config.py +0 -0
  21. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/tests/__init__.py +0 -0
  22. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/tests/test_helpers.py +0 -0
  23. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/tests/test_models.py +0 -0
  24. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/utils/__init__.py +0 -0
  25. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/utils/helpers.py +0 -0
  26. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/public-repo/utils/logger.py +0 -0
  27. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/requirements.txt +0 -0
  28. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/src/__init__.py +0 -0
  29. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/src/config.py +0 -0
  30. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/tests/__init__.py +0 -0
  31. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/tests/test_helpers.py +0 -0
  32. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/tests/test_models.py +0 -0
  33. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/utils/__init__.py +0 -0
  34. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/utils/helpers.py +0 -0
  35. {process_intelligence-10.0.0 → process_intelligence-10.0.3}/utils/logger.py +0 -0
@@ -0,0 +1,52 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: ["main", "dev"]
6
+ pull_request:
7
+ branches: ["main"]
8
+
9
+ jobs:
10
+ lint:
11
+ name: Lint
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v5
18
+ with:
19
+ python-version: "3.11"
20
+
21
+ - name: Install ruff
22
+ run: pip install ruff>=0.3.0
23
+
24
+ - name: Run ruff (lint)
25
+ run: ruff check .
26
+
27
+ - name: Run ruff (format check)
28
+ run: ruff format --check .
29
+
30
+ test:
31
+ name: Tests
32
+ runs-on: ubuntu-latest
33
+ needs: lint
34
+ strategy:
35
+ matrix:
36
+ python-version: ["3.10", "3.11", "3.12"]
37
+ steps:
38
+ - uses: actions/checkout@v4
39
+
40
+ - name: Set up Python ${{ matrix.python-version }}
41
+ uses: actions/setup-python@v5
42
+ with:
43
+ python-version: ${{ matrix.python-version }}
44
+
45
+ - name: Install dependencies
46
+ run: |
47
+ pip install --upgrade pip
48
+ pip install -e ".[dev]"
49
+ pip install -r requirements.txt
50
+
51
+ - name: Run pytest
52
+ run: pytest tests/ -v
@@ -61,8 +61,8 @@ jobs:
61
61
  git rm -rf .
62
62
  git checkout private/main -- .
63
63
 
64
- # Exclude the publish workflow file
65
- git rm --force --ignore-unmatch .github/workflows/publish.yml
64
+ # Exclude all workflow files
65
+ git rm --force --ignore-unmatch -r .github/workflows/
66
66
 
67
67
  git add --all
68
68
  git commit -m "${{ github.event.inputs.commit_message }}"
@@ -79,11 +79,12 @@ jobs:
79
79
  - name: Create GitHub release in public repo
80
80
  env:
81
81
  GH_TOKEN: ${{ secrets.PUBLIC_REPO_PAT }}
82
+ CHANGELOG: ${{ github.event.inputs.changelog }}
82
83
  run: |
83
84
  gh release create ${{ github.event.inputs.tag }} \
84
85
  --repo LukasSchBal/test \
85
86
  --title "${{ github.event.inputs.tag }}" \
86
- --notes "${{ github.event.inputs.changelog }}"
87
+ --notes "$CHANGELOG"
87
88
 
88
89
  - name: Set up Python
89
90
  uses: actions/setup-python@v6
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: process-intelligence
3
- Version: 10.0.0
3
+ Version: 10.0.3
4
4
  Summary: A sample process intelligence Python project.
5
5
  Project-URL: Homepage, https://github.com/LukasSchBal/test
6
6
  Project-URL: Source, https://github.com/LukasSchBal/test-dev
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "process-intelligence"
7
- version = "10.0.0"
7
+ version = "10.0.3"
8
8
  description = "A sample process intelligence Python project."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -1,5 +1,5 @@
1
1
  """Data models for the application."""
2
-
2
+ # some random changes
3
3
  from dataclasses import dataclass, field
4
4
  from typing import List, Optional
5
5
  from datetime import datetime
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "process-intelligence"
7
- version = "10.0.0"
7
+ version = "10.0.3"
8
8
  description = "A sample process intelligence Python project."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -1,5 +1,5 @@
1
1
  """Data models for the application."""
2
-
2
+ # some random changes
3
3
  from dataclasses import dataclass, field
4
4
  from typing import List, Optional
5
5
  from datetime import datetime