Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Performance-critical code uses Cython (`.pyx` files) with declaration files (`.p
- Use `cpdef` for methods callable from both Python and Cython
- Use `cimport` for Cython-level imports (e.g., `cimport rmgpy.constants as constants`)
- Register new Cython modules in `setup.py` `ext_modules` list
- Remember to re-compile (e.g. run `make`) after modifying any `.pyx` or `.pxd` files, or if there seem to be weird bugs in them.

## Development Commands
```bash
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rwest I think you will need to pin to cantera>=3.2.0 specficically. When I tried to upgrade to 3.1 (here: #2751) I ran into a bug with reading Chemkin files in our regression tests, see: Cantera/cantera#1845. Cantera quickly resolved it, and released the fix in 3.2 (see Bugs fixed: https://github.com/Cantera/cantera/releases/tag/v3.2.0)

Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies:

# external software tools for chemistry
- conda-forge::coolprop
- conda-forge::cantera =2.6
- conda-forge::cantera >=3.0
- conda-forge::mopac
# see https://github.com/ReactionMechanismGenerator/RMG-Py/pull/2639#issuecomment-2050292972
- conda-forge::cclib >=1.6.3,<1.9
Expand Down
Loading
Loading