diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 48b465c..42c2090 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: hooks: - id: black - repo: https://github.com/PyCQA/flake8 - rev: 3.9.0 + rev: 3.9.1 hooks: - id: flake8 additional_dependencies: @@ -23,6 +23,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v3.4.0 hooks: - - id: check-byte-order-marker + - id: fix-byte-order-marker - id: trailing-whitespace - id: end-of-file-fixer diff --git a/requirements/dev.txt b/requirements/dev.txt index 72ef0a0..29e4610 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -30,7 +30,7 @@ filelock==3.0.12 # virtualenv freezegun==1.1.0 # via -r requirements/tests.in -identify==1.5.13 +identify==2.2.3 # via pre-commit idna==2.10 # via requests @@ -46,7 +46,7 @@ mypy-extensions==0.4.3 # via mypy mypy==0.812 # via -r requirements/typing.in -nodeenv==1.5.0 +nodeenv==1.6.0 # via pre-commit packaging==20.9 # via @@ -54,25 +54,27 @@ packaging==20.9 # pytest # sphinx # tox -pallets-sphinx-themes==1.2.3 +pallets-sphinx-themes==2.0.0rc1 # via -r requirements/docs.in -pip-tools==5.5.0 +pep517==0.10.0 + # via pip-tools +pip-tools==6.1.0 # via -r requirements/dev.in pluggy==0.13.1 # via # pytest # tox -pre-commit==2.10.1 +pre-commit==2.12.0 # via -r requirements/dev.in py==1.10.0 # via # pytest # tox -pygments==2.7.4 +pygments==2.8.1 # via sphinx pyparsing==2.4.7 # via packaging -pytest==6.2.2 +pytest==6.2.3 # via -r requirements/tests.in python-dateutil==2.8.1 # via freezegun @@ -91,7 +93,7 @@ snowballstemmer==2.1.0 # via sphinx sphinx-issues==1.2.0 # via -r requirements/docs.in -sphinx==3.5.1 +sphinx==3.5.4 # via # -r requirements/docs.in # pallets-sphinx-themes @@ -113,18 +115,19 @@ sphinxcontrib-serializinghtml==1.1.4 # via sphinx toml==0.10.2 # via + # pep517 # pre-commit # pytest # tox -tox==3.22.0 +tox==3.23.0 # via -r requirements/dev.in -typed-ast==1.4.2 +typed-ast==1.4.3 # via mypy typing-extensions==3.7.4.3 # via mypy urllib3==1.26.4 # via requests -virtualenv==20.4.2 +virtualenv==20.4.3 # via # pre-commit # tox diff --git a/requirements/docs.in b/requirements/docs.in index 7ec501b..1862ddd 100644 --- a/requirements/docs.in +++ b/requirements/docs.in @@ -1,4 +1,4 @@ -Pallets-Sphinx-Themes +Pallets-Sphinx-Themes >= 2.0.0rc1 Sphinx sphinx-issues sphinxcontrib-log-cabinet diff --git a/requirements/docs.txt b/requirements/docs.txt index 1f7c3d9..9b58c50 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -26,9 +26,9 @@ packaging==20.9 # via # pallets-sphinx-themes # sphinx -pallets-sphinx-themes==1.2.3 +pallets-sphinx-themes==2.0.0rc1 # via -r requirements/docs.in -pygments==2.7.4 +pygments==2.8.1 # via sphinx pyparsing==2.4.7 # via packaging @@ -40,7 +40,7 @@ snowballstemmer==2.1.0 # via sphinx sphinx-issues==1.2.0 # via -r requirements/docs.in -sphinx==3.5.1 +sphinx==3.5.4 # via # -r requirements/docs.in # pallets-sphinx-themes diff --git a/requirements/tests.txt b/requirements/tests.txt index a971e89..5128dba 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -18,7 +18,7 @@ py==1.10.0 # via pytest pyparsing==2.4.7 # via packaging -pytest==6.2.2 +pytest==6.2.3 # via -r requirements/tests.in python-dateutil==2.8.1 # via freezegun diff --git a/requirements/typing.txt b/requirements/typing.txt index 677889a..be023cf 100644 --- a/requirements/typing.txt +++ b/requirements/typing.txt @@ -22,7 +22,7 @@ py==1.10.0 # via pytest pyparsing==2.4.7 # via packaging -pytest==6.2.2 +pytest==6.2.3 # via -r requirements/tests.in python-dateutil==2.8.1 # via freezegun @@ -30,7 +30,7 @@ six==1.15.0 # via python-dateutil toml==0.10.2 # via pytest -typed-ast==1.4.2 +typed-ast==1.4.3 # via mypy typing-extensions==3.7.4.3 # via mypy diff --git a/src/itsdangerous/__init__.py b/src/itsdangerous/__init__.py index 509ea49..0b2ec5d 100644 --- a/src/itsdangerous/__init__.py +++ b/src/itsdangerous/__init__.py @@ -19,4 +19,4 @@ from .url_safe import URLSafeSerializer from .url_safe import URLSafeTimedSerializer -__version__ = "2.0.0rc1" +__version__ = "2.0.0rc2"