diff --git a/.github/workflows/github_test_action.yml b/.github/workflows/github_test_action.yml index f66ca0ab5..4e6f6267a 100644 --- a/.github/workflows/github_test_action.yml +++ b/.github/workflows/github_test_action.yml @@ -24,10 +24,10 @@ jobs: group: [ 1, 2 ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 #- uses: julia-actions/setup-julia@v1.5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -71,9 +71,9 @@ jobs: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -108,9 +108,9 @@ jobs: python-version: ['3.10'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -141,9 +141,9 @@ jobs: # python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.10' - name: Install dependencies @@ -172,9 +172,9 @@ jobs: matrix: python-version: ['3.9'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -200,9 +200,9 @@ jobs: matrix: python-version: [ '3.9' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Check docs for Python ${{ matrix.python-version }} diff --git a/.github/workflows/test_release.yml b/.github/workflows/test_release.yml index 667a82f27..c06c99722 100644 --- a/.github/workflows/test_release.yml +++ b/.github/workflows/test_release.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/upload_release.yml b/.github/workflows/upload_release.yml index 234db3de1..d1faec1df 100644 --- a/.github/workflows/upload_release.yml +++ b/.github/workflows/upload_release.yml @@ -7,8 +7,6 @@ name: upload on: # Allows you to run this workflow manually from the Actions tab push: - tags: - - 'v*' branches: - master @@ -25,7 +23,7 @@ jobs: - uses: actions/checkout@v4 # Sets up python3 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.10' # Installs and upgrades pip, installs other dependencies and installs the package from setup.py @@ -38,7 +36,6 @@ jobs: # Upload to PyPI - name: Build and Upload to PyPI - if: inputs.upload_server == 'pypi' run: | python3 setup.py sdist --formats=zip twine check dist/* --strict diff --git a/setup.py b/setup.py index bdfc378d6..e203bc92d 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='pandapower', - version='2.14.0', + version='2.14.1', author='Leon Thurner, Alexander Scheidler', author_email='leon.thurner@retoflow.de, alexander.scheidler@iee.fraunhofer.de', description='An easy to use open source tool for power system modeling, analysis and optimization with a high degree of automation.',