Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
PKG="${GITHUB_REPOSITORY##*/}" # e.g. grid2op
cyclonedx-py environment .sbom-venv/bin/python \
--output-format json \
--outfile "${PKG}-${TAG}-sbom.cdx.json"
--output-file "${PKG}-${TAG}-sbom.cdx.json"
- name: Upload SBOM artifact
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Benjamin Donnot'

# The full version, including alpha/beta/rc tags
release = '1.12.5.dev0'
release = '1.12.5'
version = '1.12'


Expand Down
3 changes: 1 addition & 2 deletions grid2op/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
"""
Grid2Op a testbed platform to model sequential decision making in power systems.
"""
import sys

__version__ = '1.12.5.dev0'
__version__ = '1.12.5'

__all__ = [
"Action",
Expand Down
Loading