Skip to content

Commit

Permalink
Fix version number in the analysis config created by convert-spikes (#44
Browse files Browse the repository at this point in the history
)
  • Loading branch information
GianlucaFicarelli committed May 23, 2024
1 parent 1ab2b3e commit 051f5c0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,21 @@
Changelog
=========

Version 0.11.2
--------------

Bug Fixes
~~~~~~~~~

- Fix version number in the analysis config created by ``blueetl convert-spikes``.


Version 0.11.1
--------------

Bug Fixes
~~~~~~~~~

- Revert raising an error if the env variable SHMDIR isn't set. Log a more detailed warning instead.


Expand Down
2 changes: 1 addition & 1 deletion src/blueetl/converters/convert_spikes.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def _write_analysis_config(path: Path, simulation_campaign_config_path: Path) ->
L.info("Writing %s", path)
simulation_campaign = str(relpath(simulation_campaign_config_path, path.parent))
analysis_config = {
"version": 3,
"version": 4,
"simulation_campaign": simulation_campaign,
"cache": {
"path": "analysis",
Expand Down
2 changes: 1 addition & 1 deletion src/blueetl/schemas/analysis_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type: object
properties:
version:
title: Version
description: Version number of the configuration, it should be set to ``2``.
description: Version number of the configuration.
type: integer
simulation_campaign:
title: Simulation Campaign
Expand Down

0 comments on commit 051f5c0

Please sign in to comment.