Skip to content

Commit 2386567

Browse files
committed
updated all versions with new github.com links, descriptions, and universal py2.py3
1 parent 9dd18bc commit 2386567

File tree

9 files changed

+19
-8
lines changed

9 files changed

+19
-8
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://pypi.python.org/pypi

pipeline_logger/pipeline_logger/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import json
44
from typing import Callable
55

6-
__version__ = "1.0.1"
6+
__version__ = "1.0.2"
77

88
# TODO: Handle batched inputs and outputs (using above custom fn's - match inputs to outputs!)
99
# TODO: Add Monitors around these calls!!

pipeline_logger/publish.sh

-1
This file was deleted.

pipeline_logger/push.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
rm -rf build/
2+
rm -rf dist/
3+
rm -rf pipeline_logger.egg-info
4+
rm -rf pipeline_logger/__pycache__
5+
6+
python setup.py bdist_wheel --universal upload

pipeline_monitor/pipeline_monitor/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from prometheus_client import CollectorRegistry, generate_latest, start_http_server, Summary, Counter, Histogram, Gauge
22
from timeit import default_timer
33

4-
__version__ = "1.0.0"
4+
__version__ = "1.0.1"
55

66
prometheus_monitor_registry = CollectorRegistry()
77

pipeline_monitor/publish.sh

-1
This file was deleted.

pipeline_monitor/push.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
rm -rf build/
2+
rm -rf dist/
3+
rm -rf pipeline_monitor.egg-info
4+
rm -rf pipeline_monitor/__pycache__
5+
6+
python setup.py bdist_wheel --universal upload
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.4"
1+
__version__ = "1.0.5"

pipeline_runtime/requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pipeline-logger==1.0.1
2-
pipeline-monitor==1.0.0
1+
pipeline-logger==1.0.2
2+
pipeline-monitor==1.0.1
33
pipeline-model==1.0.3
4-
cloudpickle==0.3.1
4+
cloudpickle>=0.3.1

0 commit comments

Comments
 (0)