mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
Now require numpy >=1.9 in install_requires per request by @paulromano
This commit is contained in:
parent
cd921b74bf
commit
0439b6cc6d
2 changed files with 2 additions and 2 deletions
2
setup.py
2
setup.py
|
|
@ -32,7 +32,7 @@ kwargs = {'name': 'openmc',
|
|||
if have_setuptools:
|
||||
kwargs.update({
|
||||
# Required dependencies
|
||||
'install_requires': ['numpy', 'h5py', 'matplotlib'],
|
||||
'install_requires': ['numpy>=1.9', 'h5py', 'matplotlib'],
|
||||
|
||||
# Optional dependencies
|
||||
'extras_require': {
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class AsymmetricLatticeTestHarness(PyAPITestHarness):
|
|||
# Assign the tallies file to the input set
|
||||
self._input_set.tallies = tallies_file
|
||||
|
||||
|
||||
# Build default settings
|
||||
self._input_set.build_default_settings()
|
||||
|
||||
# Specify summary output and correct source sampling box
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue