Commit e073141 1 parent f54e535 commit e073141 Copy full SHA for e073141
File tree 6 files changed +8
-8
lines changed
6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 23
23
24
24
- uses : actions/upload-artifact@v4
25
25
with :
26
- name : python-${{ matrix.runs-on }}
26
+ name : python-${{ matrix.os }}
27
27
path : ./wheelhouse/*.whl
28
28
29
29
make_sdist :
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ endif()
128
128
129
129
set (MANIFOLD_VERSION_MAJOR 2)
130
130
set (MANIFOLD_VERSION_MINOR 4)
131
- set (MANIFOLD_VERSION_PATCH 2 )
131
+ set (MANIFOLD_VERSION_PATCH 4 )
132
132
set (MANIFOLD_VERSION "${MANIFOLD_VERSION_MAJOR} .${MANIFOLD_VERSION_MINOR} .${MANIFOLD_VERSION_PATCH} " )
133
133
set_property (TARGET manifold PROPERTY VERSION "${MANIFOLD_VERSION} " )
134
134
set_property (TARGET manifold PROPERTY SOVERSION 2)
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " manifold-3d" ,
3
- "version" : " 2.4.2 " ,
3
+ "version" : " 2.4.4 " ,
4
4
"description" : " Geometry library for topological robustness" ,
5
5
"main" : " manifold.js" ,
6
6
"files" : [
Original file line number Diff line number Diff line change 33
33
} : pkgs . stdenv . mkDerivation {
34
34
inherit doCheck ;
35
35
pname = "manifold-${ parallel-backend } " ;
36
- version = "2.4.2 " ;
36
+ version = "2.4.4 " ;
37
37
src = self ;
38
38
nativeBuildInputs = ( with pkgs ; [
39
39
cmake
86
86
parallelBackends ) ) // {
87
87
manifold-js = pkgs . buildEmscriptenPackage {
88
88
name = "manifold-js" ;
89
- version = "2.4.2 " ;
89
+ version = "2.4.4 " ;
90
90
src = self ;
91
91
nativeBuildInputs = ( with pkgs ; [ cmake python39 ] ) ;
92
92
buildInputs = [ pkgs . nodejs ] ;
120
120
# but how should we make it work with other python versions?
121
121
manifold3d = with pkgs . python3Packages ; buildPythonPackage {
122
122
pname = "manifold3d" ;
123
- version = "2.4.2 " ;
123
+ version = "2.4.4 " ;
124
124
src = self ;
125
125
propagatedBuildInputs = [
126
126
numpy
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " manifold3d"
3
- version = " 2.4.2 "
3
+ version = " 2.4.4 "
4
4
authors = [
5
5
{
name =
" Emmett Lalish" ,
email =
" [email protected] " },
6
6
]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ cd cmake-consumer
5
5
cat << EOT >> CMakeLists.txt
6
6
cmake_minimum_required(VERSION 3.18)
7
7
project(testing LANGUAGES CXX)
8
- find_package(manifold "2.4.2 " REQUIRED)
8
+ find_package(manifold "2.4.4 " REQUIRED)
9
9
add_executable(testing test.cpp)
10
10
target_link_libraries(testing PRIVATE manifold)
11
11
EOT
You can’t perform that action at this time.
0 commit comments