-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Working meson.build. * Maybe get tests working on github. * Romove editable mode in pipeline. * Run pipeline on different machines. * Do not update pip. * Runner is broken?
- Loading branch information
1 parent
009564d
commit acdd9b8
Showing
9 changed files
with
91 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
project( | ||
'scipy_dae', | ||
version: '0.0.4', | ||
meson_version: '>= 1.1.0', | ||
) | ||
|
||
py3 = import('python').find_installation() | ||
|
||
subdir('scipy_dae') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
from ._dae import solve_dae, consistent_initial_conditions | ||
from ._dae import BDFDAE, RadauDAE | ||
from ._dae import ( | ||
solve_dae, | ||
consistent_initial_conditions, | ||
BDFDAE, | ||
RadauDAE, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
py3.install_sources([ | ||
'__init__.py', | ||
'base.py', | ||
'bdf.py', | ||
'common.py', | ||
'dae.py', | ||
'radau.py', | ||
], | ||
subdir: 'scipy_dae/integrate/_dae' | ||
) | ||
|
||
subdir('tests') |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
py3.install_sources([ | ||
'__init__.py', | ||
'test_consistent_initial_conditions.py', | ||
'test_dae.py', | ||
], | ||
subdir: 'scipy_dae/integrate/_dae/tests', | ||
install_tag: 'tests' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
py3.install_sources([ | ||
'__init__.py', | ||
], | ||
subdir: 'scipy_dae/integrate' | ||
) | ||
|
||
subdir('_dae') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
python_sources = [ | ||
'__init__.py', | ||
] | ||
|
||
py3.install_sources( | ||
python_sources, | ||
subdir: 'scipy_dae' | ||
) | ||
|
||
subdir('integrate') |