Skip to content

Commit

Permalink
Merge pull request #123 from Santandersecurityresearch/develop
Browse files Browse the repository at this point in the history
Changes in setup.py to align minimum version with requirements.txt
  • Loading branch information
pealtrufo authored May 20, 2020
2 parents 625e564 + d2095ef commit 8ed75b4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion drheader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

"""Top-level package for drHEADer core."""

__version__ = '1.3.0'
__version__ = '1.3.1'

from drheader.core import Drheader # noqa
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.0
current_version = 1.3.1
commit = True
tag = False

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
with open('HISTORY.md') as history_file:
history = history_file.read()

requirements = ['Click>=6.0',
'requests==2.22.0',
requirements = ['Click>=7.0',
'requests>=2.22.0',
'jsonschema==3.0.2',
'jsonschema[format]',
'validators==0.13.0',
'validators>=0.14.0',
'tabulate==0.8.3',
'pyyaml==5.3.1',
'junit-xml==1.9']
Expand Down Expand Up @@ -62,6 +62,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/santandersecurityresearch/drheader',
version='1.3.0',
version='1.3.1',
zip_safe=False,
)

0 comments on commit 8ed75b4

Please sign in to comment.