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
|
- 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 }}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
grpcio < 1.49
|
grpcio
|
||||||
grpcio-tools < 1.49
|
grpcio-tools
|
||||||
protobuf < 3.21
|
protobuf
|
||||||
m2r
|
m2r
|
Loading…
Reference in New Issue
Block a user