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

Commit

Permalink
Unpin versions in setup.py (#169)
Browse files Browse the repository at this point in the history
* Unpin versions in setup.py as per #168
* Bump version: 1.34.1 → 1.34.2
  • Loading branch information
jbasko authored Dec 3, 2018
1 parent 800b043 commit 1d7229c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.34.1
current_version = 1.34.2
commit = true
tag = false

Expand Down
2 changes: 1 addition & 1 deletion configmanager/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.34.1'
__version__ = '1.34.2'

from .managers import Config
from .items import Item
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#
# Real dependencies
#
six ==1.10.0
future ==0.16.0
six
future
hookery == 1.4.0

#
# Potentially optional dependencies
#
configparser==3.5.0
configparser

#
# Optional dependencies
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ def read(fname):
description='Forget about configparser, YAML, or JSON parsers. Focus on configuration.',
long_description=read('README.rst'),
packages=['configmanager'],
install_requires=['six==1.10.0', 'future==0.16.0', 'configparser==3.5.0', 'hookery == 1.4.0'],
install_requires=[
'six',
'future',
'configparser',
'hookery == 1.4.0',
],
extras_require={
'yaml': ['PyYAML'],
'click': ['click'],
Expand Down

0 comments on commit 1d7229c

Please sign in to comment.