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.
Files changed (42) hide show
  1. {hapc-0.2.0 → hapc-0.2.1}/CMakeLists.txt +4 -0
  2. {hapc-0.2.0/python/hapc.egg-info → hapc-0.2.1}/PKG-INFO +1 -1
  3. {hapc-0.2.0 → hapc-0.2.1}/pyproject.toml +1 -1
  4. {hapc-0.2.0 → hapc-0.2.1}/python/hapc/__init__.py +1 -1
  5. {hapc-0.2.0 → hapc-0.2.1/python/hapc.egg-info}/PKG-INFO +1 -1
  6. {hapc-0.2.0 → hapc-0.2.1}/setup.py +6 -2
  7. {hapc-0.2.0 → hapc-0.2.1}/LICENSE +0 -0
  8. {hapc-0.2.0 → hapc-0.2.1}/MANIFEST.in +0 -0
  9. {hapc-0.2.0 → hapc-0.2.1}/README.md +0 -0
  10. {hapc-0.2.0 → hapc-0.2.1}/python/demo_single.py +0 -0
  11. {hapc-0.2.0 → hapc-0.2.1}/python/hapc/core.py +0 -0
  12. {hapc-0.2.0 → hapc-0.2.1}/python/hapc/cv.py +0 -0
  13. {hapc-0.2.0 → hapc-0.2.1}/python/hapc/single.py +0 -0
  14. {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/SOURCES.txt +0 -0
  15. {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/dependency_links.txt +0 -0
  16. {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/not-zip-safe +0 -0
  17. {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/requires.txt +0 -0
  18. {hapc-0.2.0 → hapc-0.2.1}/python/hapc.egg-info/top_level.txt +0 -0
  19. {hapc-0.2.0 → hapc-0.2.1}/python/test_install.py +0 -0
  20. {hapc-0.2.0 → hapc-0.2.1}/setup.cfg +0 -0
  21. {hapc-0.2.0 → hapc-0.2.1}/src/bindings.cpp +0 -0
  22. {hapc-0.2.0 → hapc-0.2.1}/src/cross_kernel.cpp +0 -0
  23. {hapc-0.2.0 → hapc-0.2.1}/src/cv_classi.cpp +0 -0
  24. {hapc-0.2.0 → hapc-0.2.1}/src/cv_fast_pchal.cpp +0 -0
  25. {hapc-0.2.0 → hapc-0.2.1}/src/cv_fast_pchal_python.cpp +0 -0
  26. {hapc-0.2.0 → hapc-0.2.1}/src/fast_pchal.cpp +0 -0
  27. {hapc-0.2.0 → hapc-0.2.1}/src/hapc_core.hpp +0 -0
  28. {hapc-0.2.0 → hapc-0.2.1}/src/logistic_call.cpp +0 -0
  29. {hapc-0.2.0 → hapc-0.2.1}/src/mkernel.cpp +0 -0
  30. {hapc-0.2.0 → hapc-0.2.1}/src/pcghal_call.cpp +0 -0
  31. {hapc-0.2.0 → hapc-0.2.1}/src/pcghal_classi_call.cpp +0 -0
  32. {hapc-0.2.0 → hapc-0.2.1}/src/pcghal_cv.cpp +0 -0
  33. {hapc-0.2.0 → hapc-0.2.1}/src/pcghal_cv_cpp.cpp +0 -0
  34. {hapc-0.2.0 → hapc-0.2.1}/src/pchal_design.cpp +0 -0
  35. {hapc-0.2.0 → hapc-0.2.1}/src/r_bindings.cpp +0 -0
  36. {hapc-0.2.0 → hapc-0.2.1}/src/ridge_wrappers.cpp +0 -0
  37. {hapc-0.2.0 → hapc-0.2.1}/src/single_pcghal.cpp +0 -0
  38. {hapc-0.2.0 → hapc-0.2.1}/src/single_pcghal_cpp.cpp +0 -0
  39. {hapc-0.2.0 → hapc-0.2.1}/src/single_pchar.cpp +0 -0
  40. {hapc-0.2.0 → hapc-0.2.1}/tests/test_api.py +0 -0
  41. {hapc-0.2.0 → hapc-0.2.1}/tests/test_core.py +0 -0
  42. {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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hapc
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Highly Adaptive Principal Components
5
5
  Home-page: https://github.com/meixide/hapc
6
6
  Author: Carlos García Meixide
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "hapc"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Highly Adaptive Principal Components"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -1,6 +1,6 @@
1
1
  """HAPC: Highly Adaptive Principal Components."""
2
2
 
3
- __version__ = "0.2.0"
3
+ __version__ = "0.2.1"
4
4
 
5
5
  from .core import (
6
6
  pchal_design,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hapc
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Highly Adaptive Principal Components
5
5
  Home-page: https://github.com/meixide/hapc
6
6
  Author: Carlos García Meixide
@@ -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
- # Dependencies are defined in pyproject.toml [project.dependencies]
86
- # install_requires is omitted here to avoid conflicts with pyproject.toml
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