Skip to content

Commit

Permalink
set a lower supported version for importlib-metadata (#4)
Browse files Browse the repository at this point in the history
* set a lower supported version for importlib-metadata

* added changelog file

* bumped version to 1.0.3

Co-authored-by: Tomer Shlomo <[email protected]>
  • Loading branch information
tomer322 and tomash655 authored Jan 25, 2021
1 parent 5d1253e commit 05c4af7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Changelog
## 1.0.3 (2020-01-25)
### Misc
- Extend supported version of `importlib-metadata` to the lowest.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ def read(path):
'cryptography>=2.8',
'colorama<=0.4.4',
'click<=7.2',
'importlib-metadata>=2.0.0,<=3.4.0'
'importlib-metadata<=3.4.0'
]

setup(
name="netunnel",
version='1.0.2',
version='1.0.3',
description='A tool to create network tunnels over HTTP/S written in Python 3',
long_description=read("README.md"),
long_description="\n\n".join((read("README.md"), read("CHANGES.md"))),
long_description_content_type='text/markdown',
author='Claroty Open Source',
author_email='[email protected]',
Expand Down

0 comments on commit 05c4af7

Please sign in to comment.