Skip to content

Commit

Permalink
version>=1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dugalh committed Jun 16, 2022
1 parent 29a0157 commit 0aba2fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/install-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- id: get_geedim_version
run: |
geedim_version=$(echo ${{ github.event.release.tag_name }} | tr -d "v")
echo "::set-output name=geedim_version::$geedim_version"
- name: Install geedim from Test PyPI
run: |
python -m pip install --upgrade pip
python -m pip install geedim==${{steps.get_geedim_version.outputs.geedim_version}}
python -m pip install geedim>=1.1.2
- name: Test geedim CLI
timeout-minutes: 5
env:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/install-test-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- id: get_geedim_version
run: |
geedim_version=$(echo ${{ github.event.release.tag_name }} | tr -d "v")
echo "::set-output name=geedim_version::$geedim_version"
- name: Install geedim from Test PyPI
run: |
python -m pip install --upgrade pip
python -m pip install --extra-index-url https://test.pypi.org/simple/ geedim==${{steps.get_geedim_version.outputs.geedim_version}}
python -m pip install --extra-index-url https://test.pypi.org/simple/ geedim>=1.1.2
- name: Test geedim CLI
timeout-minutes: 5
env:
Expand Down

0 comments on commit 0aba2fd

Please sign in to comment.