Skip to content

Commit

Permalink
Release/0.9.1.1 (#125)
Browse files Browse the repository at this point in the history
* Pathing typos

* Updating changelog
  • Loading branch information
thijssnelleman authored Dec 12, 2024
1 parent 6c2554b commit 28c003c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

Notable changes to Sparkle will be documented in this file.

## [0.9.2] - 2025/??/??
## [0.9.1.1] - 2025/12/12

Patchfix

### Fixed
- Execution rights on internal package CLI files were removed during pip installation
- Various bugfixes regarding nicknames

### Changed
- run_configured_solver command has now been merged into run_solvers [SPRK-361]
Expand Down
8 changes: 4 additions & 4 deletions sparkle/CLI/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
module_path = Path(__file__).parent.resolve()

package_cli_entry_points = [
module_path / "Core" / "compute_features.py",
module_path / "Core" / "run_portfolio_selector_core.py",
module_path.parent / "Solver" / "solver_cli.py",
module_path.parent / "Configurator" / "configurator_cli.py",
module_path / "core" / "compute_features.py",
module_path / "core" / "run_portfolio_selector_core.py",
module_path.parent / "solver" / "solver_cli.py",
module_path.parent / "configurator" / "configurator_cli.py",
]


Expand Down

0 comments on commit 28c003c

Please sign in to comment.