From 2ad45113b5b00b6c46ad0c29675a75a4000d36ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20P=2E=20D=C3=BCrholt?= Date: Fri, 4 Aug 2023 18:29:44 +0200 Subject: [PATCH] Feature/bump botorch (#250) * bump botorch verion * bump python versions for test --- .github/workflows/test.yaml | 4 ++-- setup.py | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index de9a8e1d2..cc5876c4f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.8', '3.9', '3.10' ] + python-version: ['3.9', '3.10', '3.11' ] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ '3.8', '3.10' ] + python-version: [ '3.9', '3.11' ] steps: - uses: actions/checkout@v3 - uses: conda-incubator/setup-miniconda@v2 diff --git a/setup.py b/setup.py index 8effacf87..2040df836 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ ], long_description=long_description, long_description_content_type="text/markdown", - python_requires=">=3.8", + python_requires=">=3.9.0", packages=find_packages(), include_package_data=True, install_requires=[ @@ -42,8 +42,7 @@ ], extras_require={ "optimization": [ - "torch>=1.12", - "botorch==0.8.5", + "botorch>=0.9.1", "multiprocess", "plotly", "formulaic>=0.6.0",