mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
Remove pinning of Python modules
* Remove all version pinning * Fix boolean check in GHA
This commit is contained in:
parent
1da509166a
commit
e1dacf7617
6
.github/workflows/ResInsightWithCache.yml
vendored
6
.github/workflows/ResInsightWithCache.yml
vendored
@ -222,13 +222,13 @@ jobs:
|
||||
- name: Stats for buildcache
|
||||
run: ${{ github.workspace }}/buildcache/bin/buildcache -s
|
||||
- name: Run Unit Tests
|
||||
if: matrix.config.execute-unit-tests == 'true'
|
||||
if: matrix.config.execute-unit-tests
|
||||
shell: bash
|
||||
run: |
|
||||
cmakebuild/ApplicationExeCode/ResInsight --unittest
|
||||
|
||||
- name: Run pytest
|
||||
if: matrix.config.build-python-module == 'true'
|
||||
if: matrix.config.build-python-module
|
||||
env:
|
||||
RESINSIGHT_EXECUTABLE: ${{ runner.workspace }}/ResInsight/cmakebuild/ApplicationExeCode/ResInsight
|
||||
run: |
|
||||
@ -236,7 +236,7 @@ jobs:
|
||||
${{ steps.python-path.outputs.PYTHON_EXECUTABLE }} -m pytest --console
|
||||
|
||||
- name: Upload artifact
|
||||
if: matrix.config.os == 'windows-latest'
|
||||
if: ${{contains( matrix.config.os, 'windows') }}
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ResInsight-${{ matrix.config.name }}
|
||||
|
@ -1,4 +1,4 @@
|
||||
grpcio < 1.49
|
||||
grpcio-tools < 1.49
|
||||
protobuf < 3.21
|
||||
grpcio
|
||||
grpcio-tools
|
||||
protobuf
|
||||
m2r
|
Loading…
Reference in New Issue
Block a user