Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: macOS
on:
push:
branches:
- dev
- brew

pull_request:
branches: [ "master" ]
workflow_dispatch:

jobs:
Expand Down
10 changes: 8 additions & 2 deletions bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,14 @@

setup(
name="pyforefire",
version="2025.1",
install_requires=["pybind11", "setuptools", "wheel"],
version="2025.2",
install_requires=[
"pybind11",
"setuptools",
"wheel",
"numpy",
"matplotlib",
],
author="Jean-Baptiste Filippi",
author_email="filippi_j@univ-corse.fr",
description="Python bindings for ForeFire library",
Expand Down
6 changes: 3 additions & 3 deletions install-forefire-osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ if ! xcode-select -p > /dev/null 2>&1; then
fi

# Install dependencies via Homebrew.
brew install cmake
brew install netcdf
brew install netcdf-cxx
brew reinstall cmake
brew reinstall netcdf
brew reinstall netcdf-cxx

# Set NETCDF_HOME to the prefix for the NetCDF C library.
export NETCDF_HOME=$(brew --prefix netcdf)
Expand Down
Loading