Skip to content

Commit

Permalink
Fix missed dependency for CI scripts and remove not ready to use Pyth…
Browse files Browse the repository at this point in the history
…on 3.12 environment
  • Loading branch information
Alexey Pechnikov committed Jan 21, 2024
1 parent 1255082 commit ba5e265
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-13, macos-12]
python-version: ["3.12", "3.11"]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -48,9 +48,7 @@ jobs:
gmtsar_sharedir.csh
- name: Install PyGMTSAR
run: |
# upgrade package to resolve dependencies
#pip3 install click --upgrade
#pip3 install matplotlib seaborn
pip3 install pyvista panel
pip3 install -e ./pygmtsar/
- name: Run test
working-directory: tests
Expand All @@ -59,7 +57,8 @@ jobs:
# remove Google Colab specific commands
sed -i '' '/if \x27google\.colab\x27 in sys\.modules:/,/^$/d' imperial_valley_2015.py
sed -i '' 's/^[[:blank:]]*!.*$//' imperial_valley_2015.py
ulimit -n 10000 python3 imperial_valley_2015.py
ulimit -n 10000
python3 imperial_valley_2015.py
- name: Archive test results
uses: actions/upload-artifact@v3
with:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,8 @@ jobs:
gmtsar_sharedir.csh
- name: Install PyGMTSAR
run: |
# upgrade package to resolve dependencies
#pip3 install click --upgrade
#pip3 install matplotlib seaborn
# vtk rendering
pip3 install pyvista
pip3 install pyvista panel
pip3 install -e ./pygmtsar/
- name: Run test
working-directory: tests
Expand Down

0 comments on commit ba5e265

Please sign in to comment.