Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/SLURM-LB-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
- name: Clone UM-Bridge and run loadbalancer test
run: |
dnf -y install gcc-g++ libstdc++-static
python3 -m venv venv && . venv/bin/activate && pip3 install umbridge
python3 -m venv venv && . venv/bin/activate && pip3 install numpy umbridge
cd hpc && make
sed -i -e 's|--partition=devel|--partition=normal|' slurm_scripts/job.sh
./load-balancer --scheduler=slurm &
sleep 20 &&
python3 test/minimal/minimal-client.py
python3 test/minimal/minimal-client.py
2 changes: 1 addition & 1 deletion .github/workflows/client-python-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
apt update && DEBIAN_FRONTEND="noninteractive" apt install -y python3-pip python3-venv
python3 -m venv venv
. venv/bin/activate
pip3 install umbridge
pip3 install numpy umbridge
-
name: Build and run
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/client-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
apt update && DEBIAN_FRONTEND="noninteractive" apt install -y python3-pip python3-venv
python3 -m venv venv
. venv/bin/activate
pip3 install umbridge pytest
pip3 install numpy umbridge pytest
-
name: Build and run
run: |
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

setuptools.setup(
name="umbridge",
version="1.2.7",
version="1.2.8",
author="UM-Bridge",
author_email="",
description="UM-Bridge (the UQ and Model Bridge) provides a unified interface for numerical models that is accessible from virtually any programming language or framework. It is primarily intended for coupling advanced models (e.g. simulations of complex physical processes) to advanced statistical or optimization methods.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["aiohttp", "requests", "asyncio"],
install_requires=["aiohttp", "requests", "asyncio", "numpy"],
url="https://github.com/UM-Bridge/umbridge",
packages=setuptools.find_packages(),
classifiers=( # Classifiers help people find your
Expand Down
Loading