diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d65dc22d..6fe4c282 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/docs/conf.py b/docs/conf.py index 76211ee4..2dd98f90 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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' diff --git a/grid2op/__init__.py b/grid2op/__init__.py index 86e05cdb..21754fc9 100644 --- a/grid2op/__init__.py +++ b/grid2op/__init__.py @@ -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",