dioptic.profileparser 0.2__tar.gz → 0.2.1__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.1}/.github/workflows/pypi-packages.yml +1 -1
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/PKG-INFO +1 -1
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/dioptic.profileparser.egg-info/PKG-INFO +1 -1
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/python/CMakeLists.txt +2 -8
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/python/pyprofileparser.cpp +1 -1
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/setup.py +6 -1
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/.gitignore +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/.gitlab-ci.yml +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/LICENSE +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/README.md +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/cpp/peglib.h +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/cpp/processprofile.hpp +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/dioptic.profileparser.egg-info/SOURCES.txt +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/dioptic.profileparser.egg-info/dependency_links.txt +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/dioptic.profileparser.egg-info/top_level.txt +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/js/CMakeLists.txt +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/js/profile_parser_js.cpp +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/pyproject.toml +0 -0
- {dioptic.profileparser-0.2 → dioptic.profileparser-0.2.1}/setup.cfg +0 -0
|
@@ -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.1",
|
|
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.1}/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
|