Skip to content

Commit b46831f

Browse files
authored
Merge pull request #17 from 4n4nd/v0.0.2
Update version number for v0.0.2b1 release
2 parents 9758495 + 5651e75 commit b46831f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

prometheus_api_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
""" A collection of tools to collect and manipulate prometheus metrics"""
22

33
__title__ = "prometheus-connect"
4-
__version__ = "0.0.1"
4+
__version__ = "0.0.2b1"
55

66
from .prometheus_connect import *
77
from .metric import Metric

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55

66

77
def get_install_requires():
8-
with open('requirements.txt', 'r') as requirements_file:
8+
with open("requirements.txt", "r") as requirements_file:
99
res = requirements_file.readlines()
10-
return [req.split(' ', maxsplit=1)[0] for req in res if req]
10+
return [req.split(" ", maxsplit=1)[0] for req in res if req]
11+
1112

1213
setuptools.setup(
1314
name="prometheus-api-client",
14-
version="0.0.1",
15+
version="0.0.2b1",
1516
author="Anand Sanmukhani",
1617
author_email="[email protected]",
1718
description="A small python api to collect data from prometheus",

0 commit comments

Comments
 (0)