Skip to content

Commit 0d35749

Browse files
committed
fix linux and macos build
1 parent cd5d332 commit 0d35749

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SET (SUBDIRS
1414
# superlu stuff
1515
SITE_NAME(HOSTNAME)
1616
MESSAGE("Hostname: ${HOSTNAME}")
17-
ADD_DEFINITIONS(-DSYMDIFF_VERSION_STRING=\"1.2.1\")
17+
ADD_DEFINITIONS(-DSYMDIFF_VERSION_STRING=\"1.2.2\")
1818
ADD_DEFINITIONS(-DSYMDIFF_COPYRIGHT_YEAR=\"2010-2022\")
1919
2020
set(PROJECT_BIN_DIR ${PROJECT_SOURCE_DIR}/bin)

bdist_wheel/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bdist_wheel]
22
py-limited-api = cp36
33
[metadata]
4-
version = 1.2.1
4+
version = 1.2.2
55
classifiers =
66
Development Status :: 5 - Production/Stable
77
Intended Audience :: Science/Research

scripts/build_macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ then
6868
fi
6969

7070
(rsync -avP --exclude __pycache__ lib/symdiff bdist_wheel/)
71-
(rsync -avP --exclude __pycache__ LICENSE NOTICE README.md README examples doc bdist_wheel)
71+
(rsync -avP --exclude __pycache__ LICENSE NOTICE README.md examples doc bdist_wheel)
7272
(cd bdist_wheel && pip wheel .)
7373
(mv bdist_wheel/*.whl .)
7474

scripts/build_manylinux2014.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export PYTHON3_ARCHIVE=""
2323
# SYMDIFF build
2424
(bash scripts/symdiff_centos.sh && cd linux_x86_64_release && make -j2 && make test);
2525
(rsync -avP --exclude __pycache__ lib/symdiff bdist_wheel/)
26-
(rsync -avP --exclude __pycache__ LICENSE NOTICE README.md README examples doc bdist_wheel)
26+
(rsync -avP --exclude __pycache__ LICENSE NOTICE README.md examples doc bdist_wheel)
2727
(cd bdist_wheel && ${PIP_BIN} wheel .)
2828
(cd bdist_wheel && auditwheel repair *.whl)
2929
(mv bdist_wheel/wheelhouse/*.whl .)

0 commit comments

Comments
 (0)