forked from mvantellingen/python-zeep
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from strollby/patch-sequence-visitor
Patch sequence visitor
- Loading branch information
Showing
49 changed files
with
242 additions
and
136 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 4.1.0 | ||
current_version = 4.2.1 | ||
commit = true | ||
tag = true | ||
tag_name = {new_version} | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
github: [mvantellingen] |
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,3 +1,4 @@ | ||
env/ | ||
*.egg-info | ||
*.pyc | ||
__pycache__ | ||
|
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
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,8 +1,9 @@ | ||
[mypy] | ||
files = src/, benchmark/, examples/, tests/ | ||
ignore_missing_imports = True | ||
python_version = 3.6 | ||
implicit_reexport = False | ||
python_version = 3.7 | ||
warn_unused_configs = True | ||
mypy_path = src | ||
warn_unreachable = True | ||
follow_imports = True | ||
follow_imports_for_stubs = True |
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,5 +1,2 @@ | ||
[wheel] | ||
universal = 1 | ||
|
||
[flake8] | ||
max-line-length = 99 |
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
"sphinx>=1.4.0", | ||
] | ||
|
||
async_require = ["httpx"] | ||
async_require = ["httpx>=0.15.0"] | ||
|
||
xmlsec_require = [ | ||
"xmlsec>=0.6.1", | ||
|
@@ -27,12 +27,11 @@ | |
tests_require = [ | ||
"coverage[toml]==5.2.1", | ||
"freezegun==0.3.15", | ||
"mock==2.0.0", | ||
"pretend==1.0.9", | ||
"pytest-cov==2.8.1", | ||
"pytest-httpx", | ||
"pytest-asyncio", | ||
"pytest==6.0.1", | ||
"pytest==6.2.5", | ||
"requests_mock>=0.7.0", | ||
# Linting | ||
"isort==5.3.2", | ||
|
@@ -50,13 +49,16 @@ | |
|
||
setup( | ||
name="zeep", | ||
version="4.1.0", | ||
description="A modern/fast Python SOAP client based on lxml / requests", | ||
version="4.2.1", | ||
description="A Python SOAP client", | ||
long_description=long_description, | ||
author="Michael van Tellingen", | ||
author_email="[email protected]", | ||
url="http://docs.python-zeep.org", | ||
python_requires=">=3.6", | ||
url="https://docs.python-zeep.org", | ||
project_urls={ | ||
"Source": "https://github.com/mvantellingen/python-zeep", | ||
}, | ||
python_requires=">=3.7", | ||
install_requires=install_requires, | ||
tests_require=tests_require, | ||
extras_require={ | ||
|
@@ -74,10 +76,12 @@ | |
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
], | ||
|
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,16 @@ | ||
from zeep.client import AsyncClient, CachingClient, Client # noqa | ||
from zeep.plugins import Plugin # noqa | ||
from zeep.settings import Settings # noqa | ||
from zeep.transports import Transport # noqa | ||
from zeep.xsd.valueobjects import AnyObject # noqa | ||
from zeep.client import AsyncClient, CachingClient, Client | ||
from zeep.plugins import Plugin | ||
from zeep.settings import Settings | ||
from zeep.transports import Transport | ||
from zeep.xsd.valueobjects import AnyObject | ||
|
||
__version__ = "4.1.0" | ||
__version__ = "4.2.1" | ||
__all__ = [ | ||
"AsyncClient", | ||
"CachingClient", | ||
"Client", | ||
"Plugin", | ||
"Settings", | ||
"Transport", | ||
"AnyObject", | ||
] |
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
Oops, something went wrong.