Skip to content

Commit

Permalink
Update version number to v1.4.1
Browse files Browse the repository at this point in the history
Fix wheel generation (not universal).
  • Loading branch information
avalentino committed Jul 18, 2021
1 parent 2845a91 commit 1c89624
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 7 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
hashsum changelog
=================

hashsum v1.4.1 (18/07/2021)
---------------------------

* Fix the wheel generation: generated wheel are not universal,
they only work with Python 3.6 and higher


hashsum v1.4.0 (18/07/2021)
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion hashsum.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
PYTHON_ARGCOMPLETE_OK = True


__version__ = '1.4.0'
__version__ = '1.4.1'
PROG = os.path.splitext(os.path.basename(__file__))[0]
LOGFMT = '%(levelname)s: %(message)s'

Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ download_url = https://pypi.python.org/pypi/hashsum
author = Antonio Valentino
author_email = [email protected]
platforms = any
license_files = LICENSE.txt

[options]
py_modules = hashsum
python_requires = >=3.6
zip_safe = True

[options.entry_points]
Expand All @@ -35,8 +37,5 @@ console_scripts =
[options.extras_require]
cli = aurgcomplete

[bdist_wheel]
universal = 1

[tool:pytest]
addopts = -p no:warnings -p no:logging

0 comments on commit 1c89624

Please sign in to comment.