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.
Files changed (19) hide show
  1. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/.github/workflows/pypi-packages.yml +12 -10
  2. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/PKG-INFO +9 -2
  3. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/PKG-INFO +9 -2
  4. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/python/pyprofileparser.cpp +1 -1
  5. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/setup.py +1 -1
  6. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/.gitignore +0 -0
  7. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/.gitlab-ci.yml +0 -0
  8. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/LICENSE +0 -0
  9. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/README.md +0 -0
  10. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/cpp/peglib.h +0 -0
  11. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/cpp/processprofile.hpp +0 -0
  12. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/SOURCES.txt +0 -0
  13. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/dependency_links.txt +0 -0
  14. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/top_level.txt +0 -0
  15. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/js/CMakeLists.txt +0 -0
  16. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/js/profile_parser_js.cpp +0 -0
  17. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/pyproject.toml +0 -0
  18. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/python/CMakeLists.txt +0 -0
  19. {dioptic.profileparser-0.2.1 → dioptic_profileparser-0.2.2}/setup.cfg +0 -0
@@ -11,34 +11,34 @@ jobs:
11
11
  build-sdist:
12
12
  runs-on: ubuntu-latest
13
13
  steps:
14
- - uses: actions/checkout@v3
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@v3
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@v3
30
+ - uses: actions/checkout@v4
31
31
  - uses: ilammy/msvc-dev-cmd@v1
32
- - uses: actions/setup-python@v4
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@v3
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@v3
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
1
+ Metadata-Version: 2.4
2
2
  Name: dioptic.profileparser
3
- Version: 0.2.1
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
@@ -1,11 +1,18 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: dioptic.profileparser
3
- Version: 0.2.1
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
@@ -8,7 +8,7 @@
8
8
  using namespace std::string_view_literals;
9
9
  namespace py = pybind11;
10
10
 
11
- constexpr auto VERSION = "0.2.1"sv;
11
+ constexpr auto VERSION = "0.2.2"sv;
12
12
 
13
13
  struct Convert {
14
14
  // Profile data types to python conversion
@@ -9,7 +9,7 @@ long_description_content_type="text/markdown"
9
9
 
10
10
  setup(
11
11
  name="dioptic.profileparser",
12
- version="0.2.1",
12
+ version="0.2.2",
13
13
  author="Peter Würtz",
14
14
  author_email="pwuertz@gmail.com",
15
15
  url="https://github.com/dioptic/profileparser",