openmc-data 0.1.4__py3-none-any.whl → 0.2.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
openmc_data/__init__.py CHANGED
@@ -2,3 +2,4 @@ from .utils import download, extract, process_neutron, process_thermal, state_do
2
2
  from .urls import all_release_details
3
3
  from .urls_h5 import all_h5_release_details
4
4
  from .urls_xml import all_chain_release_details
5
+ from .urls_chain import all_decay_release_details
openmc_data/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # file generated by setuptools_scm
2
2
  # don't change, don't track in version control
3
- __version__ = version = '0.1.4'
4
- __version_tuple__ = version_tuple = (0, 1, 4)
3
+ __version__ = version = '0.2.1'
4
+ __version_tuple__ = version_tuple = (0, 2, 1)
@@ -29,7 +29,7 @@ parser.add_argument(
29
29
  "-d",
30
30
  "--destination",
31
31
  type=Path,
32
- default="nndc-b7.1-hdf5",
32
+ default="endf-b7.1-hdf5",
33
33
  help="Directory to create new library in",
34
34
  )
35
35
  parser.add_argument(
@@ -81,7 +81,7 @@ args = parser.parse_args()
81
81
 
82
82
  def main():
83
83
 
84
- library_name = "nndc"
84
+ library_name = "endf"
85
85
  release = "b7.1"
86
86
 
87
87
  cwd = Path.cwd()