hapc 0.2.0__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.
- {hapc-0.2.0 → hapc-0.2.1}/CMakeLists.txt +4 -0
- {hapc-0.2.0/python/hapc.egg-info → hapc-0.2.1}/PKG-INFO +1 -1
- {hapc-0.2.0 → hapc-0.2.1}/pyproject.toml +1 -1
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc/__init__.py +1 -1
- {hapc-0.2.0 → hapc-0.2.1/python/hapc.egg-info}/PKG-INFO +1 -1
- {hapc-0.2.0 → hapc-0.2.1}/setup.py +6 -2
- {hapc-0.2.0 → hapc-0.2.1}/LICENSE +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/MANIFEST.in +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/README.md +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/demo_single.py +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc/core.py +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc/cv.py +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc/single.py +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/SOURCES.txt +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/dependency_links.txt +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/not-zip-safe +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/requires.txt +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/top_level.txt +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/python/test_install.py +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/setup.cfg +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/bindings.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/cross_kernel.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/cv_classi.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/cv_fast_pchal.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/cv_fast_pchal_python.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/fast_pchal.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/hapc_core.hpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/logistic_call.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/mkernel.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/pcghal_call.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/pcghal_classi_call.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/pcghal_cv.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/pcghal_cv_cpp.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/pchal_design.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/r_bindings.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/ridge_wrappers.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/single_pcghal.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/single_pcghal_cpp.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/src/single_pchar.cpp +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/tests/test_api.py +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/tests/test_core.py +0 -0
- {hapc-0.2.0 → hapc-0.2.1}/tests/test_r_vs_python_alpha.py +0 -0
|
@@ -22,7 +22,11 @@ if(NOT Eigen3_FOUND)
|
|
|
22
22
|
Eigen3
|
|
23
23
|
URL https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.gz
|
|
24
24
|
URL_HASH SHA256=8586084f71f9bde545ee7fa6d00288b264a2b7ac3607b974e54d13e7162c1c72
|
|
25
|
+
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
|
|
25
26
|
)
|
|
27
|
+
# Disable Eigen tests and demos to speed up configuration
|
|
28
|
+
set(EIGEN_BUILD_TESTING OFF CACHE BOOL "" FORCE)
|
|
29
|
+
set(EIGEN_BUILD_DOC OFF CACHE BOOL "" FORCE)
|
|
26
30
|
FetchContent_MakeAvailable(Eigen3)
|
|
27
31
|
endif()
|
|
28
32
|
|
|
@@ -5,6 +5,7 @@ from setuptools.command.build_ext import build_ext
|
|
|
5
5
|
import os
|
|
6
6
|
import subprocess
|
|
7
7
|
import sys
|
|
8
|
+
import time
|
|
8
9
|
from pathlib import Path
|
|
9
10
|
|
|
10
11
|
class CMakeExtension(Extension):
|
|
@@ -82,8 +83,11 @@ setup(
|
|
|
82
83
|
ext_modules=[CMakeExtension('hapc/hapc_core', sourcedir=os.path.dirname(os.path.abspath(__file__)))],
|
|
83
84
|
cmdclass=dict(build_ext=CMakeBuild),
|
|
84
85
|
python_requires=">=3.8",
|
|
85
|
-
|
|
86
|
-
|
|
86
|
+
install_requires=[
|
|
87
|
+
"numpy>=1.24,<2.3",
|
|
88
|
+
"scipy>=1.7",
|
|
89
|
+
"scikit-learn>=0.24",
|
|
90
|
+
],
|
|
87
91
|
include_package_data=True,
|
|
88
92
|
zip_safe=False,
|
|
89
93
|
)
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|