dioptic.profileparser 0.2__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 → dioptic_profileparser-0.2.2}/.github/workflows/pypi-packages.yml +12 -10
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/PKG-INFO +9 -2
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/PKG-INFO +9 -2
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/python/CMakeLists.txt +2 -8
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/python/pyprofileparser.cpp +1 -1
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/setup.py +6 -1
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/.gitignore +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/.gitlab-ci.yml +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/LICENSE +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/README.md +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/cpp/peglib.h +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/cpp/processprofile.hpp +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/SOURCES.txt +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/dependency_links.txt +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/top_level.txt +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/js/CMakeLists.txt +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/js/profile_parser_js.cpp +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/pyproject.toml +0 -0
- {dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/setup.cfg +0 -0
{dioptic.profileparser-0.2 → 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"]
|
|
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 → 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
|
|
@@ -6,18 +6,12 @@ if (NOT CMAKE_BUILD_TYPE OR CMAKE_BUILD_TYPE STREQUAL "")
|
|
|
6
6
|
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "" FORCE)
|
|
7
7
|
endif()
|
|
8
8
|
|
|
9
|
-
if(WIN32)
|
|
10
|
-
# Prevent pybind11 from sharing resources with other, potentially ABI incompatible modules
|
|
11
|
-
# https://github.com/pybind/pybind11/issues/2898
|
|
12
|
-
add_definitions(-DPYBIND11_COMPILER_TYPE="_${PROJECT_NAME}_abi")
|
|
13
|
-
endif()
|
|
14
|
-
|
|
15
9
|
# Fetch pybind11 library
|
|
16
10
|
include(FetchContent)
|
|
17
11
|
FetchContent_Declare(
|
|
18
12
|
pybind11
|
|
19
|
-
GIT_REPOSITORY https://github.com/
|
|
20
|
-
GIT_TAG
|
|
13
|
+
GIT_REPOSITORY https://github.com/pwuertz/pybind11
|
|
14
|
+
GIT_TAG fix_2898
|
|
21
15
|
)
|
|
22
16
|
FetchContent_MakeAvailable(pybind11)
|
|
23
17
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import sys
|
|
1
2
|
import pathlib
|
|
2
3
|
from setuptools import setup
|
|
3
4
|
from cmake_build_extension import BuildExtension, CMakeExtension
|
|
@@ -8,7 +9,7 @@ long_description_content_type="text/markdown"
|
|
|
8
9
|
|
|
9
10
|
setup(
|
|
10
11
|
name="dioptic.profileparser",
|
|
11
|
-
version="0.2",
|
|
12
|
+
version="0.2.2",
|
|
12
13
|
author="Peter Würtz",
|
|
13
14
|
author_email="pwuertz@gmail.com",
|
|
14
15
|
url="https://github.com/dioptic/profileparser",
|
|
@@ -20,6 +21,10 @@ setup(
|
|
|
20
21
|
name="dioptic.pyprofileparser",
|
|
21
22
|
source_dir="python",
|
|
22
23
|
install_prefix=".",
|
|
24
|
+
cmake_configure_options=[
|
|
25
|
+
f"-DPYTHON_EXECUTABLE={pathlib.Path(sys.executable)}",
|
|
26
|
+
f"-DPYTHON3_EXECUTABLE={pathlib.Path(sys.executable)}",
|
|
27
|
+
],
|
|
23
28
|
)],
|
|
24
29
|
cmdclass=dict(build_ext=BuildExtension),
|
|
25
30
|
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dioptic.profileparser-0.2 → dioptic_profileparser-0.2.2}/dioptic.profileparser.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|