Skip to content

Commit

Permalink
Remove macos platform from GH Action (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcmetzger authored Mar 25, 2024
1 parent 9b16f5d commit a725916
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest]
platform: [ubuntu-latest]
python-version: ["3.11"]

runs-on: ${{ matrix.platform }}
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,7 @@ Later on, we will use this knowledge to bind it with Python

### Prerequisites

pyRTE-RRTMGP is currently only tested on x86_64 architecture with Linux and macOS.

To build and install the package, you need the conda package manager. If you don't have conda installed, you can install it from [here](https://docs.conda.io/en/latest/miniconda.html).
pyRTE-RRTMGP is currently only tested on x86_64 architecture with Linux (and, to some extend, macOS on Intel processors).

The package source code is hosted [on GitHub](https://github.com/earth-system-radiation/pyRTE-RRTMGP) and uses git submodules to include the [RTE+RRTMGP Fortran software](https://earth-system-radiation.github.io/rte-rrtmgp/). The easiest way to install pyRTE-RRTMGP is to use `git`. You can install git from [here](https://git-scm.com/downloads).

Expand Down Expand Up @@ -153,7 +151,7 @@ The package source code is hosted [on GitHub](https://github.com/earth-system-ra
You also have the option to build and install the package with pip. This might work on additional, untested architectures (such as macOS on M1). However, this is not recommended as it requires you to have a working Fortran compiler and other prerequisites installed on your system.
1. **Clone the repository** (``git clone [email protected]:earth-system-radiation/pyRTE-RRTMGP.git``) and update the submodules (``git submodule update --init --recursive``) as described in the conda installation instructions (above)[#installation-with-conda-recommended].
1. **Clone the repository** (``git clone [email protected]:earth-system-radiation/pyRTE-RRTMGP.git``) and update the submodules (``git submodule update --init --recursive``) as described in the conda installation instructions [above](#installation-with-conda-recommended).
2. **Install the necessary dependencies** for your operating system.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user_guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To install the package, you can clone the repository and build and install the c

## Prerequisites

pyRTE-RRTMGP is currently only tested on x86_64 architecture with Linux and macOS.
pyRTE-RRTMGP is currently only tested on x86_64 architecture with Linux (and, to some extend, macOS on Intel processors).

To build and install the package, you need the conda package manager. If you don't have conda installed, you can install it from [here](https://docs.conda.io/en/latest/miniconda.html).

Expand Down

0 comments on commit a725916

Please sign in to comment.