Skip to content

Commit

Permalink
fix: remove absolute path in module
Browse files Browse the repository at this point in the history
  • Loading branch information
alonfnt committed Nov 27, 2024
1 parent f2ac00e commit 6417677
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions bayex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from bayex.src.optimizer import Optimizer, OptimizerState
from bayex.src import domain
import .src
from .src.optimizer import Optimizer, OptimizerState
from .src import domain


__version__ = "0.2.0"
Expand Down
Empty file added bayex/src/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bayex"
version = "0.2.0"
version = "0.2.1-b"
description = "Minimal Bayesian Optimization Implementation with Gaussian Processes written in JAX."
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit 6417677

Please sign in to comment.