Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add f2py3 symlink #19

Merged
merged 1 commit into from
Jun 11, 2024
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Make a symlink of `f2py` to `f2py3` to fix an issue with the wrong `f2py` being found sometimes on discover

### Added

### Removed
Expand Down
3 changes: 3 additions & 0 deletions install_miniconda.bash
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,9 @@ cd $MINICONDA_INSTALLDIR/bin
/bin/rm -v mpif77 && /bin/ln -sv esmf-mpifort esmf-mpif77
/bin/rm -v mpif90 && /bin/ln -sv esmf-mpifort esmf-mpif90

# We also want to link f2py to f2py3 for Python 3
/bin/ln -sv f2py f2py3

cd $SCRIPTDIR

# Install weird nc_time_axis package
Expand Down