Skip to content

Commit

Permalink
Merge pull request #52 from Fluorescence-Tools/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
tpeulen authored Feb 14, 2024
2 parents 3241130 + 549d706 commit 2293b35
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/conda-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,13 @@ jobs:
conda config --show
printenv | sort
- name: Build Conda Package
- name: Build and Upload Conda Package
uses: aganders3/headless-gui@v1
with:
shell: bash -el {0}
run: |
mamba install conda-build boa anaconda-client
conda config --add channels tpeulen
cd conda-recipe
conda mambabuild . --output-folder ../conda-bld
cd ..
- name: Upload Conda Package
shell: bash -el {0}
run: |
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload -u tpeulen --force conda-bld/**/*.tar.bz2
# curl -sLO https://github.com/conda-forge/conda-forge-pinning-feedstock/raw/main/recipe/conda_build_config.yaml
conda mambabuild . --output-folder conda-bld -c tpeulen
anaconda -t ${{ secrets.ANACONDA_TOKEN }} upload -u tpeulen --force conda-bld/**/*.tar.bz2
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,14 @@ install `chisurf` using `conda`/`mamba`:
```bash
conda create -n chisurf
conda activate chisurf
conda install chisurf -c tpeulen
mamba install chisurf -c tpeulen
```

To start using the software activate the `chisurf` environment and start the ChiSurf GUI:

```bash
conda activate chisurf
chisurf
```

### Windows & macOS
Expand Down
2 changes: 1 addition & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ requirements:
- pyqt
run:
- python
- {{ pin_compatible('numpy') }}
- {{ pin_compatible('numpy', max_pin='x.x') }}
- pyyaml
- pyqtgraph
- matplotlib
Expand Down

0 comments on commit 2293b35

Please sign in to comment.