Skip to content

Commit 3dc27c6

Browse files
authored
Merge branch 'main' into standardization
2 parents 5b9d514 + 48c4ce6 commit 3dc27c6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

doc/environment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies:
55
- pip
66
- pip:
77
- -e ..
8-
- ax-platform >= 0.5.0
8+
- ax-platform >= 0.5.0, < 1.0.0
99
- autodoc_pydantic >= 2.0.1
1010
- ipykernel
1111
- matplotlib

optimas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.0"
1+
__version__ = "0.8.1"

optimas/generators/ax/import_error_dummy_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ def __init__(self, *args, **kwargs) -> None:
1212
raise RuntimeError(
1313
"You need to install ax-platform, in order "
1414
"to use Ax-based generators in optimas.\n"
15-
"e.g. with `pip install ax-platform > 0.5.0`"
15+
"e.g. with `pip install 'ax-platform<1.0.0'`"
1616
)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ test = [
3434
'flake8',
3535
'pytest',
3636
'pytest-mpi',
37-
'ax-platform >=0.5.0',
37+
'ax-platform >=0.5.0, <1.0.0',
3838
'matplotlib',
3939
]
4040
all = [
41-
'ax-platform >=0.5.0',
41+
'ax-platform >=0.5.0, <1.0.0',
4242
'matplotlib'
4343
]
4444

0 commit comments

Comments
 (0)