Skip to content

Commit 91978b9

Browse files
committed
update version everywhere [skip ci]
1 parent 08a16a8 commit 91978b9

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

docs/source/conf.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
author = 'Milad Leyli-abadi'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.1'
25+
release = '0.1.0'
26+
version = '0.1'
2627

2728
# -- General configuration ---------------------------------------------------
2829

lips/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
# SPDX-License-Identifier: MPL-2.0
77
# This file is part of LIPS, LIPS is a python platform for power networks benchmarking
88

9+
__version__ = "0.1.0"

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
import setuptools
1010
from setuptools import setup
1111

12+
13+
__version__ = '0.1.0'
14+
1215
pkgs = {
1316
"required": [
1417
"numpy==1.21.5",
@@ -24,7 +27,7 @@
2427
"recommended": [
2528
"grid2op>=1.7.2",
2629
"pybind11==2.8.1",
27-
"lightsim2grid>=0.7.0.post1",
30+
"lightsim2grid>=0.7.0.post1",
2831
"leap_net @ https://github.com/BDonnot/leap_net/tarball/master#egg=leap_net",
2932
"protobuf==3.20.1",
3033
"pandapower==2.7.0",
@@ -61,7 +64,7 @@
6164
long_description = fh.read()
6265

6366
setup(name='lips',
64-
version='0.0.1',
67+
version=__version__,
6568
description='LIPS : Learning Industrial Physical Simulation benchmark suite',
6669
long_description=long_description,
6770
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)