Skip to content

Commit

Permalink
no longer support os x
Browse files Browse the repository at this point in the history
  • Loading branch information
josejimenezluna committed Oct 11, 2022
1 parent f07386a commit 56fba5c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 76 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,33 +41,3 @@ jobs:
- run: |
pytest --cov=delfta --cov-config=.coveragerc --cov-report=xml tests/
./codecov -t ${{ secrets.CODECOV_TOKEN }}
macos:
runs-on: "macos-latest"
strategy:
matrix:
python-version: ['3.8', '3.9']
defaults:
run:
shell: bash -l {0}
name: OS X py ${{ matrix.python-version }} tests
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: delfta
environment-file: environment_osx.yml
python-version: ${{ matrix.python-version }}
auto-activate-base: false
- run: |
conda info
pip install pytest
name: set pythonpath
- run: |
echo "PYTHONPATH=/Users/runner/work/delfta/delfta" >> $GITHUB_ENV
name: download files
- run: |
python delfta/download.py --tests
name: test
- run: |
pytest
25 changes: 4 additions & 21 deletions .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
jobs:
linux:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ['3.8', '3.9']
defaults:
run:
shell: bash -l {0}
Expand All @@ -18,29 +21,9 @@ jobs:
activate-environment: delfta
environment-file: environment.yml
condarc-file: conda-recipe/.condarc
python-version: 3.8
python-version: ${{ matrix.python-version }}
auto-activate-base: false
- run: |
conda info
conda install conda-build anaconda-client --yes
cd conda-recipe && pkgs=$(conda build . | grep 'TEST START' | awk '{print $3}') && for pkg in $pkgs;do anaconda -t ${{ secrets.CONDA_TOKEN }} upload -u delfta $pkg; done
macos:
runs-on: "macos-latest"
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: delfta
environment-file: environment_osx.yml
condarc-file: conda-recipe/.condarc
python-version: 3.8
auto-activate-base: false
- run: |
conda info
conda install conda-build anaconda-client --yes
cd conda-recipe && pkgs=$(conda build . | grep 'TEST START' | awk '{print $3}') && for pkg in $pkgs;do anaconda -t ${{ secrets.CONDA_TOKEN }} upload -u delfta $pkg; done
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The DelFTa application is an easy-to-use, open-source toolbox for predicting qua

## Installation

While the Linux (and Windows, through WSL) installations fully support GPU-acceleration via cudatoolkit, only CPU inference is currently available under Mac OS. We currently support Python 3.8 and 3.9 builds.
We currently only support Python 3.8 and 3.9 Linux builds.

### Installation via conda

Expand Down
24 changes: 0 additions & 24 deletions environment_osx.yml

This file was deleted.

0 comments on commit 56fba5c

Please sign in to comment.