Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nanobuild #606

Closed
wants to merge 50 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
c725e0d
move to nanobuild
Mar 22, 2024
5a5edba
update utils
Mar 22, 2024
c7e7ad6
configure itk and ants in cmakelists
Mar 22, 2024
ca16026
add all wrapped functions
Mar 31, 2024
d44b27d
update cmake
Mar 31, 2024
f96a851
move ptr wrapper to header file
Mar 31, 2024
2329134
update cmake min version
Mar 31, 2024
13a7b8e
test using any python version
Mar 31, 2024
1a5bdb8
update python
Mar 31, 2024
9631d85
add config scripts back
Mar 31, 2024
ffb8d87
update gha for big pr
Mar 31, 2024
a72a316
update gha
Mar 31, 2024
6e33dd8
gha
Mar 31, 2024
a07d065
add gha
Mar 31, 2024
6d2f82a
gha
Mar 31, 2024
cca8ab5
script paths
Mar 31, 2024
f2abd9d
print
Mar 31, 2024
be20588
path
Mar 31, 2024
5220df0
dir
Mar 31, 2024
6da78c8
gha
Mar 31, 2024
ccf3ae8
gha
Mar 31, 2024
17afaa9
update
Apr 1, 2024
2075aad
update
Apr 1, 2024
7d51120
normalize wrap names
Apr 1, 2024
de90787
add local file
Apr 1, 2024
bcb9e8b
update submodules
Apr 1, 2024
cc98d0f
update lib
Apr 1, 2024
46b7d47
update itk
Apr 1, 2024
23688f4
fix
Apr 1, 2024
a656460
update new ants structure
Apr 1, 2024
247c4be
update structure
Apr 1, 2024
506715a
update structure
Apr 2, 2024
10fd444
add itk
Apr 2, 2024
63a428d
update gha
Apr 2, 2024
c65becc
add fpic
Apr 2, 2024
7440bbc
ENH: template overloading works for lib functions
Apr 2, 2024
981239b
update nb modules
Apr 4, 2024
9070146
core image functions work
Apr 12, 2024
157533c
cloning works
Apr 12, 2024
43d08c7
ENH: core ants image tests pass
Apr 12, 2024
a8735a3
update
Apr 12, 2024
510faec
update
Apr 12, 2024
2cdaa0b
update gha
Apr 12, 2024
bf857bb
add back itk
Apr 12, 2024
e7b8a53
update requirements and pyproject
Apr 12, 2024
10a43a6
fix gha
Apr 12, 2024
af8b5e2
add mergeChannels wrap to support vector images
Apr 13, 2024
08b48a9
support vector images
Apr 13, 2024
46702ce
support more image io; fix ref issue kinda
Apr 13, 2024
65f6404
update numpy images
Apr 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update python
ncullen93 committed Mar 31, 2024
commit 1a5bdb8ed314c036f9038024e48aa0da2de0a974
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.16.3...3.26)
project(ants LANGUAGES CXX)

# Try to import all Python components potentially needed by nanobind
find_package(Python
find_package(Python 3.8
REQUIRED COMPONENTS Interpreter Development.Module
OPTIONAL_COMPONENTS Development.SABIModule)