Skip to content
Open
2 changes: 1 addition & 1 deletion .github/workflows/_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
host-os: ["ubuntu-latest"]
python-version: ["py310-cpu", "py311-cpu", "py312-cpu", "py313-cpu"]
python-version: ["py311-cpu", "py312-cpu", "py313-cpu"]
fail-fast: false

defaults:
Expand Down
6 changes: 1 addition & 5 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ platforms = ["linux-64", "osx-arm64"]
version = "0.9.0"

[dependencies]
python = ">=3.10.0,<3.14"
python = ">=3.11.0,<3.14"

[feature.dev.dependencies]

Expand Down Expand Up @@ -46,9 +46,6 @@ bluesky-tiled-plugins = "*"
ophyd-async = "*"
opencv-python = "*"

[feature.py310.dependencies]
python = "3.10.*"

[feature.py311.dependencies]
python = "3.11.*"

Expand Down Expand Up @@ -78,7 +75,6 @@ convert-tutorials-to-ipynb = "jupytext --to notebook docs/source/tutorials/*.md"
dev = ["dev"]
dev-cpu = ["dev-cpu"]
docs = ["docs"]
py310-cpu = ["dev-cpu", "py310"]
py311-cpu = ["dev-cpu", "py311"]
py312-cpu = ["dev-cpu", "py312"]
py313-cpu = ["dev-cpu", "py313"]
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ maintainers = [
{ name = "Jennefer Maldonado", email = "jmaldonad@bnl.gov" },
{ name = "Roman Chernikov", email = "rcherniko@bnl.gov" },
]
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"ax-platform>=1.1.0,<1.3",
"xopt",
"bluesky>=1.14.2",
"bluesky-queueserver-api>=0.0.12",
"torch",
Expand Down
2 changes: 2 additions & 0 deletions src/blop/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from .ax import DOF, Agent, ChoiceDOF, DOFConstraint, Objective, OutcomeConstraint, RangeDOF, ScalarizedObjective
from .plans import acquire_baseline, default_acquire, optimize, optimize_step, sample_suggestions
from .xopt import XoptOptimizer

try:
from ._version import __version__
Expand All @@ -21,4 +22,5 @@
"optimize",
"optimize_step",
"sample_suggestions",
"XoptOptimizer",
]
Loading
Loading