From 53fa68cfa33d2a466455334d91710b41791fa23e Mon Sep 17 00:00:00 2001 From: Jesse Cooper Date: Wed, 6 Nov 2024 07:42:11 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.1.0=20=E2=86=92=202.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- poetry.lock | 16 ++-- pyetrade/__init__.py | 2 +- pyproject.toml | 2 +- requirements.txt | 22 ++--- requirements_dev.txt | 192 +++++++++++++++++++++---------------------- setup.py | 2 +- 7 files changed, 119 insertions(+), 119 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fd46bfc..dd5fb92 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0 +current_version = 2.1.1 commit = True tag = True diff --git a/poetry.lock b/poetry.lock index a8f65e9..398777f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -123,13 +123,13 @@ files = [ [[package]] name = "cachecontrol" -version = "0.14.0" +version = "0.14.1" description = "httplib2 caching for requests" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "cachecontrol-0.14.0-py3-none-any.whl", hash = "sha256:f5bf3f0620c38db2e5122c0726bdebb0d16869de966ea6a2befe92470b740ea0"}, - {file = "cachecontrol-0.14.0.tar.gz", hash = "sha256:7db1195b41c81f8274a7bbd97c956f44e8348265a1bc7641c37dfebc39f0c938"}, + {file = "cachecontrol-0.14.1-py3-none-any.whl", hash = "sha256:65e3abd62b06382ce3894df60dde9e0deb92aeb734724f68fa4f3b91e97206b9"}, + {file = "cachecontrol-0.14.1.tar.gz", hash = "sha256:06ef916a1e4eb7dba9948cdfc9c76e749db2e02104a9a1277e8b642591a0f717"}, ] [package.dependencies] @@ -138,7 +138,7 @@ msgpack = ">=0.5.2,<2.0.0" requests = ">=2.16.0" [package.extras] -dev = ["CacheControl[filecache,redis]", "black", "build", "cherrypy", "furo", "mypy", "pytest", "pytest-cov", "sphinx", "sphinx-copybutton", "tox", "types-redis", "types-requests"] +dev = ["CacheControl[filecache,redis]", "build", "cherrypy", "codespell[tomli]", "furo", "mypy", "pytest", "pytest-cov", "ruff", "sphinx", "sphinx-copybutton", "tox", "types-redis", "types-requests"] filecache = ["filelock (>=3.8.0)"] redis = ["redis (>=2.10.5)"] @@ -1969,13 +1969,13 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] name = "virtualenv" -version = "20.27.0" +version = "20.27.1" description = "Virtual Python Environment builder" optional = false python-versions = ">=3.8" files = [ - {file = "virtualenv-20.27.0-py3-none-any.whl", hash = "sha256:44a72c29cceb0ee08f300b314848c86e57bf8d1f13107a5e671fb9274138d655"}, - {file = "virtualenv-20.27.0.tar.gz", hash = "sha256:2ca56a68ed615b8fe4326d11a0dca5dfbe8fd68510fb6c6349163bed3c15f2b2"}, + {file = "virtualenv-20.27.1-py3-none-any.whl", hash = "sha256:f11f1b8a29525562925f745563bfd48b189450f61fb34c4f9cc79dd5aa32a1f4"}, + {file = "virtualenv-20.27.1.tar.gz", hash = "sha256:142c6be10212543b32c6c45d3d3893dff89112cc588b7d0879ae5a1ec03a47ba"}, ] [package.dependencies] diff --git a/pyetrade/__init__.py b/pyetrade/__init__.py index a0fa0fb..3638765 100644 --- a/pyetrade/__init__.py +++ b/pyetrade/__init__.py @@ -1,5 +1,5 @@ """Init for pyetrade module """ -__version__ = "2.1.0" +__version__ = "2.1.1" from . import authorization # noqa: F401 from .authorization import ETradeOAuth, ETradeAccessManager # noqa: F401 diff --git a/pyproject.toml b/pyproject.toml index 6305508..ec99079 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyetrade" -version = "2.1.0" +version = "2.1.1" description = "eTrade API wrapper" authors = ["Jesse Cooper "] license = "GPL-3.0" diff --git a/requirements.txt b/requirements.txt index db99386..ab5a813 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,11 +1,11 @@ -certifi==2024.8.30 ; python_version >= "3.9" and python_version < "4.0" -charset-normalizer==3.4.0 ; python_version >= "3.9" and python_version < "4.0" -idna==3.10 ; python_version >= "3.9" and python_version < "4.0" -jxmlease==1.0.3 ; python_version >= "3.9" and python_version < "4.0" -oauthlib==3.2.2 ; python_version >= "3.9" and python_version < "4.0" -python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4.0" -requests-oauthlib==2.0.0 ; python_version >= "3.9" and python_version < "4.0" -requests==2.32.3 ; python_version >= "3.9" and python_version < "4.0" -six==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -urllib3==1.26.19 ; python_version >= "3.9" and python_version < "4.0" -xmltodict==0.13.0 ; python_version >= "3.9" and python_version < "4.0" +certifi==2024.8.30 ; python_version >= "3.9" and python_version < "4.0" +charset-normalizer==3.4.0 ; python_version >= "3.9" and python_version < "4.0" +idna==3.10 ; python_version >= "3.9" and python_version < "4.0" +jxmlease==1.0.3 ; python_version >= "3.9" and python_version < "4.0" +oauthlib==3.2.2 ; python_version >= "3.9" and python_version < "4.0" +python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4.0" +requests-oauthlib==2.0.0 ; python_version >= "3.9" and python_version < "4.0" +requests==2.32.3 ; python_version >= "3.9" and python_version < "4.0" +six==1.16.0 ; python_version >= "3.9" and python_version < "4.0" +urllib3==1.26.19 ; python_version >= "3.9" and python_version < "4.0" +xmltodict==0.13.0 ; python_version >= "3.9" and python_version < "4.0" diff --git a/requirements_dev.txt b/requirements_dev.txt index bf47f6b..f7f87a9 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,96 +1,96 @@ -alabaster==0.7.16 ; python_version >= "3.9" and python_version < "4.0" -astroid==3.3.5 ; python_version >= "3.9" and python_version < "4.0" -babel==2.16.0 ; python_version >= "3.9" and python_version < "4.0" -black==24.10.0 ; python_version >= "3.9" and python_version < "4.0" -build==1.2.2.post1 ; python_version >= "3.9" and python_version < "4.0" -bumpversion==0.5.3 ; python_version >= "3.9" and python_version < "4.0" -cachecontrol[filecache]==0.14.0 ; python_version >= "3.9" and python_version < "4.0" -cachetools==5.5.0 ; python_version >= "3.9" and python_version < "4.0" -certifi==2024.8.30 ; python_version >= "3.9" and python_version < "4.0" -cffi==1.17.1 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "darwin" or sys_platform == "linux") and (sys_platform == "darwin" or platform_python_implementation != "PyPy") -cfgv==3.4.0 ; python_version >= "3.9" and python_version < "4.0" -chardet==5.2.0 ; python_version >= "3.9" and python_version < "4.0" -charset-normalizer==3.4.0 ; python_version >= "3.9" and python_version < "4.0" -cleo==2.1.0 ; python_version >= "3.9" and python_version < "4.0" -click==8.1.7 ; python_version >= "3.9" and python_version < "4.0" -colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0" -coverage==7.6.4 ; python_version >= "3.9" and python_version < "4.0" -coverage[toml]==7.6.4 ; python_version >= "3.9" and python_version < "4.0" -crashtest==0.4.1 ; python_version >= "3.9" and python_version < "4.0" -cryptography==43.0.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" -dill==0.3.9 ; python_version >= "3.9" and python_version < "4.0" -distlib==0.3.9 ; python_version >= "3.9" and python_version < "4.0" -docutils==0.21.2 ; python_version >= "3.9" and python_version < "4.0" -dulwich==0.21.7 ; python_version >= "3.9" and python_version < "4.0" -exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" -fastjsonschema==2.20.0 ; python_version >= "3.9" and python_version < "4.0" -filelock==3.16.1 ; python_version >= "3.9" and python_version < "4.0" -flake8==7.1.1 ; python_version >= "3.9" and python_version < "4.0" -identify==2.6.1 ; python_version >= "3.9" and python_version < "4.0" -idna==3.10 ; python_version >= "3.9" and python_version < "4.0" -imagesize==1.4.1 ; python_version >= "3.9" and python_version < "4.0" -importlib-metadata==8.5.0 ; python_version >= "3.9" and python_version < "3.12" -iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4.0" -installer==0.7.0 ; python_version >= "3.9" and python_version < "4.0" -isort==5.13.2 ; python_version >= "3.9" and python_version < "4.0" -jaraco-classes==3.4.0 ; python_version >= "3.9" and python_version < "4.0" -jeepney==0.8.0 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" -jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4.0" -jxmlease==1.0.3 ; python_version >= "3.9" and python_version < "4.0" -keyring==24.3.1 ; python_version >= "3.9" and python_version < "4.0" -markupsafe==3.0.2 ; python_version >= "3.9" and python_version < "4.0" -mccabe==0.7.0 ; python_version >= "3.9" and python_version < "4.0" -more-itertools==10.5.0 ; python_version >= "3.9" and python_version < "4.0" -msgpack==1.1.0 ; python_version >= "3.9" and python_version < "4.0" -mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4.0" -nodeenv==1.9.1 ; python_version >= "3.9" and python_version < "4.0" -oauthlib==3.2.2 ; python_version >= "3.9" and python_version < "4.0" -packaging==24.1 ; python_version >= "3.9" and python_version < "4.0" -pathspec==0.12.1 ; python_version >= "3.9" and python_version < "4.0" -pexpect==4.9.0 ; python_version >= "3.9" and python_version < "4.0" -pkginfo==1.11.2 ; python_version >= "3.9" and python_version < "4.0" -platformdirs==4.3.6 ; python_version >= "3.9" and python_version < "4.0" -pluggy==1.5.0 ; python_version >= "3.9" and python_version < "4.0" -poetry-core==1.9.1 ; python_version >= "3.9" and python_version < "4.0" -poetry-plugin-export==1.8.0 ; python_version >= "3.9" and python_version < "4.0" -poetry==1.8.4 ; python_version >= "3.9" and python_version < "4.0" -pre-commit==3.8.0 ; python_version >= "3.9" and python_version < "4.0" -ptyprocess==0.7.0 ; python_version >= "3.9" and python_version < "4.0" -pycodestyle==2.12.1 ; python_version >= "3.9" and python_version < "4.0" -pycparser==2.22 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "darwin" or sys_platform == "linux") and (sys_platform == "darwin" or platform_python_implementation != "PyPy") -pyflakes==3.2.0 ; python_version >= "3.9" and python_version < "4.0" -pygments==2.18.0 ; python_version >= "3.9" and python_version < "4.0" -pylint==3.3.1 ; python_version >= "3.9" and python_version < "4.0" -pyproject-api==1.8.0 ; python_version >= "3.9" and python_version < "4.0" -pyproject-hooks==1.2.0 ; python_version >= "3.9" and python_version < "4.0" -pytest-cov==5.0.0 ; python_version >= "3.9" and python_version < "4.0" -pytest-mock==3.14.0 ; python_version >= "3.9" and python_version < "4.0" -pytest==8.3.3 ; python_version >= "3.9" and python_version < "4.0" -python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4.0" -pywin32-ctypes==0.2.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32" -pyyaml==6.0.2 ; python_version >= "3.9" and python_version < "4.0" -rapidfuzz==3.10.1 ; python_version >= "3.9" and python_version < "4.0" -requests-oauthlib==2.0.0 ; python_version >= "3.9" and python_version < "4.0" -requests-toolbelt==1.0.0 ; python_version >= "3.9" and python_version < "4.0" -requests==2.32.3 ; python_version >= "3.9" and python_version < "4.0" -secretstorage==3.3.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" -shellingham==1.5.4 ; python_version >= "3.9" and python_version < "4.0" -six==1.16.0 ; python_version >= "3.9" and python_version < "4.0" -snowballstemmer==2.2.0 ; python_version >= "3.9" and python_version < "4.0" -sphinx==7.4.7 ; python_version >= "3.9" and python_version < "4.0" -sphinxcontrib-applehelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" -sphinxcontrib-devhelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" -sphinxcontrib-htmlhelp==2.1.0 ; python_version >= "3.9" and python_version < "4.0" -sphinxcontrib-jsmath==1.0.1 ; python_version >= "3.9" and python_version < "4.0" -sphinxcontrib-qthelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" -sphinxcontrib-serializinghtml==2.0.0 ; python_version >= "3.9" and python_version < "4.0" -tomli==2.0.2 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" -tomlkit==0.13.2 ; python_version >= "3.9" and python_version < "4.0" -tox==4.23.2 ; python_version >= "3.9" and python_version < "4.0" -trove-classifiers==2024.10.21.16 ; python_version >= "3.9" and python_version < "4.0" -typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "3.11" -urllib3==1.26.19 ; python_version >= "3.9" and python_version < "4.0" -virtualenv==20.27.0 ; python_version >= "3.9" and python_version < "4.0" -xattr==1.1.0 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "darwin" -xmltodict==0.13.0 ; python_version >= "3.9" and python_version < "4.0" -zipp==3.20.2 ; python_version >= "3.9" and python_version < "3.12" +alabaster==0.7.16 ; python_version >= "3.9" and python_version < "4.0" +astroid==3.3.5 ; python_version >= "3.9" and python_version < "4.0" +babel==2.16.0 ; python_version >= "3.9" and python_version < "4.0" +black==24.10.0 ; python_version >= "3.9" and python_version < "4.0" +build==1.2.2.post1 ; python_version >= "3.9" and python_version < "4.0" +bumpversion==0.5.3 ; python_version >= "3.9" and python_version < "4.0" +cachecontrol[filecache]==0.14.1 ; python_version >= "3.9" and python_version < "4.0" +cachetools==5.5.0 ; python_version >= "3.9" and python_version < "4.0" +certifi==2024.8.30 ; python_version >= "3.9" and python_version < "4.0" +cffi==1.17.1 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "darwin" or sys_platform == "linux") and (sys_platform == "darwin" or platform_python_implementation != "PyPy") +cfgv==3.4.0 ; python_version >= "3.9" and python_version < "4.0" +chardet==5.2.0 ; python_version >= "3.9" and python_version < "4.0" +charset-normalizer==3.4.0 ; python_version >= "3.9" and python_version < "4.0" +cleo==2.1.0 ; python_version >= "3.9" and python_version < "4.0" +click==8.1.7 ; python_version >= "3.9" and python_version < "4.0" +colorama==0.4.6 ; python_version >= "3.9" and python_version < "4.0" +coverage==7.6.4 ; python_version >= "3.9" and python_version < "4.0" +coverage[toml]==7.6.4 ; python_version >= "3.9" and python_version < "4.0" +crashtest==0.4.1 ; python_version >= "3.9" and python_version < "4.0" +cryptography==43.0.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" +dill==0.3.9 ; python_version >= "3.9" and python_version < "4.0" +distlib==0.3.9 ; python_version >= "3.9" and python_version < "4.0" +docutils==0.21.2 ; python_version >= "3.9" and python_version < "4.0" +dulwich==0.21.7 ; python_version >= "3.9" and python_version < "4.0" +exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" +fastjsonschema==2.20.0 ; python_version >= "3.9" and python_version < "4.0" +filelock==3.16.1 ; python_version >= "3.9" and python_version < "4.0" +flake8==7.1.1 ; python_version >= "3.9" and python_version < "4.0" +identify==2.6.1 ; python_version >= "3.9" and python_version < "4.0" +idna==3.10 ; python_version >= "3.9" and python_version < "4.0" +imagesize==1.4.1 ; python_version >= "3.9" and python_version < "4.0" +importlib-metadata==8.5.0 ; python_version >= "3.9" and python_version < "3.12" +iniconfig==2.0.0 ; python_version >= "3.9" and python_version < "4.0" +installer==0.7.0 ; python_version >= "3.9" and python_version < "4.0" +isort==5.13.2 ; python_version >= "3.9" and python_version < "4.0" +jaraco-classes==3.4.0 ; python_version >= "3.9" and python_version < "4.0" +jeepney==0.8.0 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" +jinja2==3.1.4 ; python_version >= "3.9" and python_version < "4.0" +jxmlease==1.0.3 ; python_version >= "3.9" and python_version < "4.0" +keyring==24.3.1 ; python_version >= "3.9" and python_version < "4.0" +markupsafe==3.0.2 ; python_version >= "3.9" and python_version < "4.0" +mccabe==0.7.0 ; python_version >= "3.9" and python_version < "4.0" +more-itertools==10.5.0 ; python_version >= "3.9" and python_version < "4.0" +msgpack==1.1.0 ; python_version >= "3.9" and python_version < "4.0" +mypy-extensions==1.0.0 ; python_version >= "3.9" and python_version < "4.0" +nodeenv==1.9.1 ; python_version >= "3.9" and python_version < "4.0" +oauthlib==3.2.2 ; python_version >= "3.9" and python_version < "4.0" +packaging==24.1 ; python_version >= "3.9" and python_version < "4.0" +pathspec==0.12.1 ; python_version >= "3.9" and python_version < "4.0" +pexpect==4.9.0 ; python_version >= "3.9" and python_version < "4.0" +pkginfo==1.11.2 ; python_version >= "3.9" and python_version < "4.0" +platformdirs==4.3.6 ; python_version >= "3.9" and python_version < "4.0" +pluggy==1.5.0 ; python_version >= "3.9" and python_version < "4.0" +poetry-core==1.9.1 ; python_version >= "3.9" and python_version < "4.0" +poetry-plugin-export==1.8.0 ; python_version >= "3.9" and python_version < "4.0" +poetry==1.8.4 ; python_version >= "3.9" and python_version < "4.0" +pre-commit==3.8.0 ; python_version >= "3.9" and python_version < "4.0" +ptyprocess==0.7.0 ; python_version >= "3.9" and python_version < "4.0" +pycodestyle==2.12.1 ; python_version >= "3.9" and python_version < "4.0" +pycparser==2.22 ; python_version >= "3.9" and python_version < "4.0" and (sys_platform == "darwin" or sys_platform == "linux") and (sys_platform == "darwin" or platform_python_implementation != "PyPy") +pyflakes==3.2.0 ; python_version >= "3.9" and python_version < "4.0" +pygments==2.18.0 ; python_version >= "3.9" and python_version < "4.0" +pylint==3.3.1 ; python_version >= "3.9" and python_version < "4.0" +pyproject-api==1.8.0 ; python_version >= "3.9" and python_version < "4.0" +pyproject-hooks==1.2.0 ; python_version >= "3.9" and python_version < "4.0" +pytest-cov==5.0.0 ; python_version >= "3.9" and python_version < "4.0" +pytest-mock==3.14.0 ; python_version >= "3.9" and python_version < "4.0" +pytest==8.3.3 ; python_version >= "3.9" and python_version < "4.0" +python-dateutil==2.9.0.post0 ; python_version >= "3.9" and python_version < "4.0" +pywin32-ctypes==0.2.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "win32" +pyyaml==6.0.2 ; python_version >= "3.9" and python_version < "4.0" +rapidfuzz==3.10.1 ; python_version >= "3.9" and python_version < "4.0" +requests-oauthlib==2.0.0 ; python_version >= "3.9" and python_version < "4.0" +requests-toolbelt==1.0.0 ; python_version >= "3.9" and python_version < "4.0" +requests==2.32.3 ; python_version >= "3.9" and python_version < "4.0" +secretstorage==3.3.3 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "linux" +shellingham==1.5.4 ; python_version >= "3.9" and python_version < "4.0" +six==1.16.0 ; python_version >= "3.9" and python_version < "4.0" +snowballstemmer==2.2.0 ; python_version >= "3.9" and python_version < "4.0" +sphinx==7.4.7 ; python_version >= "3.9" and python_version < "4.0" +sphinxcontrib-applehelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" +sphinxcontrib-devhelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" +sphinxcontrib-htmlhelp==2.1.0 ; python_version >= "3.9" and python_version < "4.0" +sphinxcontrib-jsmath==1.0.1 ; python_version >= "3.9" and python_version < "4.0" +sphinxcontrib-qthelp==2.0.0 ; python_version >= "3.9" and python_version < "4.0" +sphinxcontrib-serializinghtml==2.0.0 ; python_version >= "3.9" and python_version < "4.0" +tomli==2.0.2 ; python_version >= "3.9" and python_full_version <= "3.11.0a6" +tomlkit==0.13.2 ; python_version >= "3.9" and python_version < "4.0" +tox==4.23.2 ; python_version >= "3.9" and python_version < "4.0" +trove-classifiers==2024.10.21.16 ; python_version >= "3.9" and python_version < "4.0" +typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "3.11" +urllib3==1.26.19 ; python_version >= "3.9" and python_version < "4.0" +virtualenv==20.27.1 ; python_version >= "3.9" and python_version < "4.0" +xattr==1.1.0 ; python_version >= "3.9" and python_version < "4.0" and sys_platform == "darwin" +xmltodict==0.13.0 ; python_version >= "3.9" and python_version < "4.0" +zipp==3.20.2 ; python_version >= "3.9" and python_version < "3.12" diff --git a/setup.py b/setup.py index 82701d4..b957627 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages from setuptools import setup -__version__ = "2.1.0" +__version__ = "2.1.1" here = path.abspath(path.dirname(__file__)) # Get the long description from the README file