Skip to content

Commit

Permalink
Merge pull request #75 from fyndata/develop
Browse files Browse the repository at this point in the history
Release v0.7.3
  • Loading branch information
glarrain committed Jul 9, 2019
2 parents 26c80ff + 6a54c90 commit 29ed7f3
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 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 = 0.7.2
current_version = 0.7.3
commit = True
tag = True

Expand Down
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
-------

0.7.3 (2019-07-09)
+++++++++++++++++++++++

* (PR #74, 2019-07-09) requirements: update main packages

0.7.2 (2019-07-08)
+++++++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion cl_sii/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"""


__version__ = '0.7.2'
__version__ = '0.7.3'
6 changes: 3 additions & 3 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# note: it is mandatory to register all dependencies of the required packages.

# Required packages:
cryptography==2.6.1
cryptography==2.7
defusedxml==0.6.0
lxml==4.3.3
marshmallow==2.19.2
marshmallow==2.19.5
pyOpenSSL==18.0.0
pytz==2019.1
signxml==2.6.0
Expand All @@ -26,7 +26,7 @@ signxml==2.6.0
# - pyOpenSSL
# - six
asn1crypto==0.24.0
certifi==2019.3.9
certifi==2019.6.16
cffi==1.12.3
eight==0.4.2
future==0.16.0
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ def get_version(*file_paths: Sequence[str]) -> str:
history = open('HISTORY.rst').read().replace('.. :changelog:', '')

requirements = [
'cryptography>=2.6.1,<3',
'cryptography>=2.7,<3',
'defusedxml>=0.5.0,<1',
'lxml>=4.2.6,<5',
'marshmallow>=2.16.3,<3',
'lxml>=4.3.3,<5',
'marshmallow>=2.19.2,<3',
# TODO: remove upper-bound after a new release of 'signxml' drops the requirement 'pyOpenSSL<19'
'pyOpenSSL>=18.0.0,<19',
'pytz>=2018.7',
'pytz>=2019.1',
'signxml>=2.6.0',
]

extras_requirements = {
'django': ['Django>=2.1'],
'djangorestframework': ['djangorestframework>=3.8.2'],
'django': ['Django>=2.1.8'],
'djangorestframework': ['djangorestframework>=3.9.2'],
}

setup_requirements = [
Expand Down

0 comments on commit 29ed7f3

Please sign in to comment.