Skip to content

Commit 323b256

Browse files
committed
fix tests
1 parent fc87731 commit 323b256

File tree

8 files changed

+72
-567
lines changed

8 files changed

+72
-567
lines changed

.github/workflows/continuous.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ jobs:
6767
- name: Tests
6868
if: matrix.name == 'Linux' || matrix.name == 'MacOS' || (matrix.config == 'Debug' && runner.os == 'Windows')
6969
run: |
70-
python test/test_bending.py
70+
python test/test_basic.py

polyfempy/Settings.py

Lines changed: 0 additions & 144 deletions
This file was deleted.

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def build_extension(self, ext):
4747

4848
cmake_args = ['-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + extdir,
4949
'-DPYTHON_EXECUTABLE=' + sys.executable,
50-
'-DPYTHON_INCLUDE_DIR=' + python_include_directory]
50+
'-DPYTHON_INCLUDE_DIR=' + python_include_directory,
51+
'-DPOLYSOLVE_WITH_SPECTRA=OFF']
5152

5253
cfg = 'Debug' if self.debug else 'Release'
5354
build_args = ['--config', cfg]
@@ -85,6 +86,7 @@ def build_extension(self, ext):
8586

8687
setup(
8788
name="polyfempy",
89+
version="0.7",
8890
description="Polyfem Python Bindings",
8991
long_description=long_description,
9092
long_description_content_type="text/markdown",

src/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
set(SOURCES
22
binding.cpp
3-
raster.cpp
43
)
54

65
source_group(TREE "${CMAKE_CURRENT_SOURCE_DIR}" PREFIX "Source Files" FILES ${SOURCES})

src/raster.cpp

Lines changed: 0 additions & 173 deletions
This file was deleted.

0 commit comments

Comments
 (0)