Skip to content

Commit 4cc3c1d

Browse files
committed
wrapped mixture_init that was breaking CI build
1 parent aafa0c2 commit 4cc3c1d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
build-backend = "scikit_build_core.build"
3-
requires = ["scikit-build-core>=0.11", "cython", "numpy>=2", "ninja", "setuptools"]
3+
requires = ["scikit-build-core>=0.11", "cython", "numpy>=2", "setuptools"]
44

55
[project]
66
name = "cea"

source/mixture.f90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ module cea_mixture
118118
!-----------------------------------------------------------------------
119119
! Mixture Implementation
120120
!-----------------------------------------------------------------------
121-
recursive function mixture_init(thermo, species_names, element_names, reactant_names, input_reactants, omitted_product_names, sort_condensed, ions) result(self)
121+
recursive function mixture_init(thermo, species_names, element_names, reactant_names, &
122+
input_reactants, omitted_product_names, sort_condensed, ions) result(self)
122123
! Create a Mixture from a subset of species in a ThermoDB
123124
! If element_names is specified, it must be a superset of elements in species_names
124125
! This allows constructing multiple Mixtures with consistent element lists

0 commit comments

Comments
 (0)