We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0991191 commit 61e2871Copy full SHA for 61e2871
meson.build
@@ -1,6 +1,6 @@
1
project(
2
'scipy_dae',
3
- version: '0.0.9',
+ version: '0.1.0',
4
meson_version: '>= 1.1.0',
5
)
6
pyproject.toml
@@ -4,7 +4,7 @@ requires = ["meson-python>=0.16.0"]
[project]
name = "scipy_dae"
7
-version = "0.0.9"
+version = "0.1.0"
8
authors = [
9
{ name="Jonas Breuling", email="[email protected]" },
10
]
pytest.ini
@@ -1,4 +1,6 @@
[pytest]
markers =
- slow: marks tests as slow (deselect with '-m "not slow"')
+ slow: Tests that are very slow (from scipy)
+ thread_unsafe: mark the test function as single-threaded (from scipy)
+ fail_slow: mark a test for a non-default timeout failure (from scipy)
serial
0 commit comments