Skip to content

Commit

Permalink
bug in release yml fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sdrauz authored and sdrauz committed Dec 22, 2023
1 parent fcb97ac commit 754b69b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install pytest igraph pytest-split
if ${{ matrix.python-version != '3.11' }}; then python -m pip install numba; fi
if [${{ matrix.python-version != '3.11' }}]; then python -m pip install numba; fi
shell: bash
- name: Install pandapipes from TestPyPI
if: ${{ inputs.upload_server == 'testpypi'}}
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

setup(
name='pandapipes',
version='0.9.0',
version='0.9.0.post1',
author='Simon Ruben Drauz-Mauel, Daniel Lohmeier, Jolando Marius Kisse',
author_email='[email protected], [email protected], '
'[email protected]',
Expand Down

0 comments on commit 754b69b

Please sign in to comment.