Skip to content

Commit

Permalink
Change version to 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianpaolo Caprara committed Dec 3, 2019
1 parent 6a61ed6 commit 756339e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 0 additions & 2 deletions RobotFrameworkElasticSearchLibrary/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Version of the RobotFrameworkElasticSearchLibrary package
__version__ = "0.0.2"

from typing import Dict, Optional

Expand Down
2 changes: 2 additions & 0 deletions RobotFrameworkElasticSearchLibrary/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Version of the RobotFrameworkElasticSearchLibrary package
__version__ = "0.0.4"
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import pathlib
from distutils import dirname
from setuptools import setup
from RobotFrameworkElasticSearchLibrary import __version__
import os


version_file = os.path.join(dirname(os.path.abspath(__file__)), 'RobotFrameworkElasticSearchLibrary', 'version.py')

with open(version_file) as file:
code = compile(file.read(), version_file, 'exec')
exec(code)

# The directory containing this file
HERE = pathlib.Path(__file__).parent
Expand Down

0 comments on commit 756339e

Please # to comment.