Skip to content

Commit e90dc67

Browse files
committed
Lock in older version of urllib3 to prevent warnings, some cleanup
1 parent d646fa1 commit e90dc67

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ clean:
1414
rm -rf $(ROOT_DIR)/dist;
1515
rm -rf $(ROOT_DIR)/env;
1616
rm -rf $(ROOT_DIR)/*.egg-info;
17-
rm -rf $(ROOT_DIR)/urlparser/*.pyc;
17+
rm -rf $(ROOT_DIR)/secretcli/*.pyc;
1818

1919
package:
2020
source $(ROOT_DIR)/env/bin/activate; python setup.py bdist_wheel

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
from setuptools import setup, find_packages
33
# To use a consistent encoding
44
from codecs import open
5-
from os import path
6-
7-
here = path.abspath(path.dirname(__file__))
85

96
try:
107
import pypandoc
@@ -13,7 +10,7 @@
1310
long_description = open('README.md').read()
1411

1512

16-
version = '0.1.0'
13+
version = '0.1.1'
1714
setup(
1815

1916
name = 'secretcli',
@@ -46,7 +43,8 @@
4643
'boto3>=1.9,<2.0',
4744
'click>=6.0,<8.0',
4845
'requests',
49-
'pyyaml'
46+
'pyyaml',
47+
'urllib3<1.24'
5048
],
5149

5250
extras_require={

0 commit comments

Comments
 (0)