Skip to content

Commit 7c75bd6

Browse files
author
Alan Christie
committed
- Tweak requirements
1 parent 4b99101 commit 7c75bd6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/python/pipelines_utils/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from __future__ import print_function
1919
import sys, gzip, json, uuid
2020
from math import log10, floor
21-
from . import BasicObjectWriter, TsvWriter
21+
from pipelines_utils import BasicObjectWriter, TsvWriter
2222

2323
def log(*args, **kwargs):
2424
"""
@@ -28,7 +28,7 @@ def log(*args, **kwargs):
2828

2929
def round_sig(x, sig):
3030
"""Round the number to the specified number of significant figures"""
31-
return round(x,a sig-int(floor(log10(abs(x))))-1)
31+
return round(x, sig - int(floor(log10(abs(x))))-1)
3232

3333
def add_default_input_args(parser):
3434
parser.add_argument('-i', '--input', help="Input file, if not defined the STDIN is used")

src/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
future == 0.16.0
2-
twine == 1.9.1
2+
twine == 1.11.0

0 commit comments

Comments
 (0)