Skip to content
This repository was archived by the owner on Feb 11, 2023. It is now read-only.

Commit 1d7229c

Browse files
authored
Unpin versions in setup.py (#169)
* Unpin versions in setup.py as per #168 * Bump version: 1.34.1 → 1.34.2
1 parent 800b043 commit 1d7229c

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.34.1
2+
current_version = 1.34.2
33
commit = true
44
tag = false
55

configmanager/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.34.1'
1+
__version__ = '1.34.2'
22

33
from .managers import Config
44
from .items import Item

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#
22
# Real dependencies
33
#
4-
six ==1.10.0
5-
future ==0.16.0
4+
six
5+
future
66
hookery == 1.4.0
77

88
#
99
# Potentially optional dependencies
1010
#
11-
configparser==3.5.0
11+
configparser
1212

1313
#
1414
# Optional dependencies

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ def read(fname):
2626
description='Forget about configparser, YAML, or JSON parsers. Focus on configuration.',
2727
long_description=read('README.rst'),
2828
packages=['configmanager'],
29-
install_requires=['six==1.10.0', 'future==0.16.0', 'configparser==3.5.0', 'hookery == 1.4.0'],
29+
install_requires=[
30+
'six',
31+
'future',
32+
'configparser',
33+
'hookery == 1.4.0',
34+
],
3035
extras_require={
3136
'yaml': ['PyYAML'],
3237
'click': ['click'],

0 commit comments

Comments
 (0)