Skip to content

Commit

Permalink
Set upper numpy limit and use OM image Python
Browse files Browse the repository at this point in the history
  • Loading branch information
artemis-beta committed Jul 27, 2024
1 parent 973e68c commit b0ff82c
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 78 deletions.
32 changes: 5 additions & 27 deletions .github/workflows/build_run_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,8 @@ jobs:
python-version: [ '3.11', '3.10', '3.12' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
run: python3 -m pip install poetry
- name: Build Module
run: |
poetry install
Expand Down Expand Up @@ -96,13 +91,8 @@ jobs:
needs: [test_module_build]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
run: python3 -m pip install poetry
- name: Run Models
run: |
poetry install
Expand All @@ -128,13 +118,8 @@ jobs:
needs: [test_module_build]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
run: python3 -m pip install poetry
- name: Run Regression Tests
run: |
poetry install
Expand All @@ -160,13 +145,8 @@ jobs:
needs: [test_module_build]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
run: python3 -m pip install poetry
- name: Run Unit Tests
run: |
poetry install
Expand All @@ -186,10 +166,8 @@ jobs:
needs: [unit_tests, regression_tests, model_run_api]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- name: Install Poetry
run: python -m pip install poetry
run: python3 -m pip install poetry
- name: Retrieve Unit Test Coverage
uses: actions/download-artifact@v3
with:
Expand Down
91 changes: 41 additions & 50 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ python = "^3.9,<3.13"
matplotlib = "^3.9.1"
prettytable = "^3.10.0"
html2text = "^2024.2.26"
numpy = "^2.0.1"
numpy = "<2"
toml = "^0.10.2"
tables = "^3.9.2"
Jinja2 = "^3.1.4"
Expand Down

0 comments on commit b0ff82c

Please sign in to comment.