-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparations for release 1.3.0 (#146)
* Preparations for release 1.3.0 * Dropping support for 3.6
- Loading branch information
1 parent
44e9c6f
commit 2528f7c
Showing
6 changed files
with
51 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
requests~=2.25.1 | ||
urllib3~=1.26.6 | ||
zeep~=4.0.0 | ||
texttable~=1.6.4 | ||
requests~=2.31.0 | ||
urllib3~=2.0.6 | ||
zeep~=4.2.1 | ||
texttable~=1.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[metadata] | ||
# replace with your username: | ||
name = polarion | ||
version = 1.2.1 | ||
version = 1.3.0 | ||
author = Jesper Raemaekers | ||
author_email = [email protected] | ||
description = Polarion client for Python | ||
|
@@ -19,4 +19,4 @@ classifiers = | |
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.6 | ||
python_requires = >=3.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="polarion", | ||
version="1.2.1", | ||
version="1.3.0", | ||
author="Jesper Raemaekers", | ||
author_email="[email protected]", | ||
description="Polarion client for Python", | ||
|
@@ -24,5 +24,5 @@ | |
], | ||
install_requires=["zeep", "lxml", "texttable"], | ||
packages=setuptools.find_packages(), | ||
python_requires='>=3.6', | ||
python_requires='>=3.7', | ||
) |