dioptic.profileparser 0.2.1__tar.gz → 0.2.2__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.
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/.github/workflows/pypi-packages.yml +12 -10
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/PKG-INFO +9 -2
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/PKG-INFO +9 -2
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/python/pyprofileparser.cpp +1 -1
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/setup.py +1 -1
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/.gitignore +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/.gitlab-ci.yml +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/LICENSE +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/README.md +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/cpp/peglib.h +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/cpp/processprofile.hpp +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/SOURCES.txt +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/dependency_links.txt +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/top_level.txt +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/js/CMakeLists.txt +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/js/profile_parser_js.cpp +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/pyproject.toml +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/python/CMakeLists.txt +0 -0
- {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/setup.cfg +0 -0
{dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/.github/workflows/pypi-packages.yml
RENAMED
|
@@ -11,34 +11,34 @@ jobs:
|
|
|
11
11
|
build-sdist:
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
14
|
+
- uses: actions/checkout@v4
|
|
15
15
|
- name: Build sdist package
|
|
16
16
|
run: |
|
|
17
17
|
python -m pip install pip build --upgrade
|
|
18
18
|
python -m build --sdist
|
|
19
|
-
- uses: actions/upload-artifact@
|
|
19
|
+
- uses: actions/upload-artifact@v4
|
|
20
20
|
with:
|
|
21
|
-
name: packages
|
|
21
|
+
name: packages-src
|
|
22
22
|
path: "dist/*.tar.gz"
|
|
23
23
|
|
|
24
24
|
build-win64-wheels:
|
|
25
25
|
runs-on: windows-latest
|
|
26
26
|
strategy:
|
|
27
27
|
matrix:
|
|
28
|
-
python-version: ["3.9", "3.10", "3.11", "3.12"]
|
|
28
|
+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13.5"]
|
|
29
29
|
steps:
|
|
30
|
-
- uses: actions/checkout@
|
|
30
|
+
- uses: actions/checkout@v4
|
|
31
31
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
32
|
-
- uses: actions/setup-python@
|
|
32
|
+
- uses: actions/setup-python@v5
|
|
33
33
|
with:
|
|
34
34
|
python-version: ${{ matrix.python-version }}
|
|
35
35
|
- name: Build wheel for py${{ matrix.python-version }}
|
|
36
36
|
run: |
|
|
37
37
|
python -m pip install pip build --upgrade
|
|
38
38
|
python -m build --wheel
|
|
39
|
-
- uses: actions/upload-artifact@
|
|
39
|
+
- uses: actions/upload-artifact@v4
|
|
40
40
|
with:
|
|
41
|
-
name: packages
|
|
41
|
+
name: packages-win-py${{ matrix.python-version }}
|
|
42
42
|
path: "dist/*.whl"
|
|
43
43
|
|
|
44
44
|
pypi-publish:
|
|
@@ -49,14 +49,16 @@ jobs:
|
|
|
49
49
|
# IMPORTANT: this permission is mandatory for trusted publishing
|
|
50
50
|
id-token: write
|
|
51
51
|
steps:
|
|
52
|
-
- uses: actions/download-artifact@
|
|
52
|
+
- uses: actions/download-artifact@v4
|
|
53
53
|
with:
|
|
54
|
-
name: packages
|
|
55
54
|
path: dist
|
|
55
|
+
pattern: packages-*
|
|
56
|
+
merge-multiple: true
|
|
56
57
|
- name: Test PyPI publish
|
|
57
58
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
58
59
|
with:
|
|
59
60
|
repository-url: https://test.pypi.org/legacy/
|
|
61
|
+
attestations: false
|
|
60
62
|
skip-existing: true
|
|
61
63
|
- name: PyPI publish
|
|
62
64
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -1,11 +1,18 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: dioptic.profileparser
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Parser library for ARGOS declarative profiles.
|
|
5
5
|
Home-page: https://github.com/dioptic/profileparser
|
|
6
6
|
Author: Peter Würtz
|
|
7
7
|
Author-email: pwuertz@gmail.com
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: author-email
|
|
12
|
+
Dynamic: description
|
|
13
|
+
Dynamic: description-content-type
|
|
14
|
+
Dynamic: home-page
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
Dynamic: summary
|
|
10
17
|
|
|
11
18
|
# Dioptic declarative profile parser
|
{dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/PKG-INFO
RENAMED
|
@@ -1,11 +1,18 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: dioptic.profileparser
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Parser library for ARGOS declarative profiles.
|
|
5
5
|
Home-page: https://github.com/dioptic/profileparser
|
|
6
6
|
Author: Peter Würtz
|
|
7
7
|
Author-email: pwuertz@gmail.com
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
License-File: LICENSE
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: author-email
|
|
12
|
+
Dynamic: description
|
|
13
|
+
Dynamic: description-content-type
|
|
14
|
+
Dynamic: home-page
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
Dynamic: summary
|
|
10
17
|
|
|
11
18
|
# Dioptic declarative profile parser
|
|
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
|