Remove pinning of Python modules

* Remove all version pinning
* Fix boolean check in GHA
This commit is contained in:
Magne Sjaastad 2023-06-26 14:29:39 +02:00 committed by GitHub
parent 1da509166a
commit e1dacf7617
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -222,13 +222,13 @@ jobs:
- name: Stats for buildcache - name: Stats for buildcache
run: ${{ github.workspace }}/buildcache/bin/buildcache -s run: ${{ github.workspace }}/buildcache/bin/buildcache -s
- name: Run Unit Tests - name: Run Unit Tests
if: matrix.config.execute-unit-tests == 'true' if: matrix.config.execute-unit-tests
shell: bash shell: bash
run: | run: |
cmakebuild/ApplicationExeCode/ResInsight --unittest cmakebuild/ApplicationExeCode/ResInsight --unittest
- name: Run pytest - name: Run pytest
if: matrix.config.build-python-module == 'true' if: matrix.config.build-python-module
env: env:
RESINSIGHT_EXECUTABLE: ${{ runner.workspace }}/ResInsight/cmakebuild/ApplicationExeCode/ResInsight RESINSIGHT_EXECUTABLE: ${{ runner.workspace }}/ResInsight/cmakebuild/ApplicationExeCode/ResInsight
run: | run: |
@ -236,7 +236,7 @@ jobs:
${{ steps.python-path.outputs.PYTHON_EXECUTABLE }} -m pytest --console ${{ steps.python-path.outputs.PYTHON_EXECUTABLE }} -m pytest --console
- name: Upload artifact - name: Upload artifact
if: matrix.config.os == 'windows-latest' if: ${{contains( matrix.config.os, 'windows') }}
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: ResInsight-${{ matrix.config.name }} name: ResInsight-${{ matrix.config.name }}

View File

@ -1,4 +1,4 @@
grpcio < 1.49 grpcio
grpcio-tools < 1.49 grpcio-tools
protobuf < 3.21 protobuf
m2r m2r