Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 722 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 722 Bytes

conda-subchannel

Create subsets of conda channels thanks to CEP-15 metadata

conda plugin

$ conda install -n base conda-subchannel
$ conda subchannel --channel=conda-forge --keep-tree python=3.9
$ python -m http.serve --directory subchannel/

Github Actions action

name: Create conda subchannel

on:
  push:
    branches:
      - main
  pull_request:

jobs:
  build-and-deploy:
    runs-on: ubuntu-latest
    permissions:
      contents: write  # to deploy to GH Pages automatically
    concurrency:
      group: ${{ github.workflow }}-${{ github.ref }}
    steps:
      - uses: jaimergp/conda-subchannel@main
        with:
          channel: conda-forge
          keep-trees: python=3.9