Skip to content
Snippets Groups Projects

ENH: Allow `Splinterpolator` instances to be created from an existing set of spline coefficients, and extend extrapolation options

Merged Paul McCarthy requested to merge enh/splinterpolator into master
Compare and Show latest version
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
test/feedsRun 0 → 100755
+ 14
0
#!/usr/bin/env python
import subprocess as sp
import shlex
def sprun(cmd):
print(f'RUN {cmd}')
sp.run(shlex.split(cmd), check=True)
if __name__ == '__main__':
sprun('make clean')
sprun('make')
sprun('./test-miscmaths --report_level=detailed')
Loading