Skip to content
Open
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
3,086 changes: 0 additions & 3,086 deletions CRunDec3/CRunDec.3.0.cpp

This file was deleted.

1,017 changes: 0 additions & 1,017 deletions CRunDec3/CRunDec.3.0.h

This file was deleted.

188 changes: 104 additions & 84 deletions CRunDec3/CRunDec.3.1.cpp → CRunDec3/CRunDec.cpp

Large diffs are not rendered by default.

119 changes: 53 additions & 66 deletions CRunDec3/CRunDec.3.1.h → CRunDec3/CRunDec.h

Large diffs are not rendered by default.

19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,21 @@ The wrapper was generated with [SWIG](http://www.swig.org/).

Binary wheels are provided via [PyPI](https://pypi.python.org/pypi/rundec) for Linux, macOS, and Windows (built with [GitHub Actions](https://github.com/features/actions)).

Python 3.10+ is supported.
Python 3.10+ is supported.

## Updating CRunDec version

To update to a new version of CRunDec:

1. Replace the CRunDec source files in the `CRunDec3/` directory with the new version, renaming them to `CRunDec.cpp` and `CRunDec.h`

2. Update `setup.py` to reference the correct source files
Copy link
Contributor

Choose a reason for hiding this comment

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

I guess after renaming the files in the previous step, this might not be necessary?


3. Check if `rundec.i` needs updates for any API changes (e.g., new types, changed function signatures)

4. Regenerate the wrapper and test:
```bash
make
pip install -e .
pytest test/
```
Loading