From 95e87473ce42387815cba747efadad074b1978a8 Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Thu, 13 Aug 2026 16:31:01 +0800 Subject: [PATCH] MAINT: Cleanup old files --- .../actions/install-plasticparcels/action.yml | 26 ------------------- environment.yml | 12 --------- 2 files changed, 38 deletions(-) delete mode 100644 .github/actions/install-plasticparcels/action.yml delete mode 100644 environment.yml diff --git a/.github/actions/install-plasticparcels/action.yml b/.github/actions/install-plasticparcels/action.yml deleted file mode 100644 index a82c26f..0000000 --- a/.github/actions/install-plasticparcels/action.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Setup Conda and install plasticparcels -description: > - In-repo composite action to setup Conda and install parcels. Installation of parcels relies on - `setup.py` file being available in the root. For general setup of Anaconda environments, just use - the `mamba-org/setup-micromamba@v1` action (setting C variables as required), or the `conda-incubator/setup-miniconda` action. -inputs: - environment-file: - description: Conda environment file to use. - default: environment.yml - environment-name: - description: Name to use for the Conda environment - default: test -runs: - using: "composite" - steps: - - name: Install micromamba (${{ inputs.environment-file }}) - uses: mamba-org/setup-micromamba@v1 - with: - environment-file: ${{ inputs.environment-file }} - environment-name: ${{ inputs.environment-name }} - channels: conda-forge - cache-environment: true - cache-downloads: true - - name: Install parcels - run: pip install . - shell: bash -el {0} diff --git a/environment.yml b/environment.yml deleted file mode 100644 index eac83eb..0000000 --- a/environment.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: plasticparcels -channels: - - conda-forge -dependencies: - - parcels>=3.0.2 - - shapely - - geopandas - - # Testing - - pytest - - coverage - - pre_commit