From 60ef8cc733dea4eff2c89c2cdecb09757657457a Mon Sep 17 00:00:00 2001 From: Eric Jolibois Date: Thu, 11 Feb 2021 00:48:02 +0100 Subject: [PATCH] combined version bumps (#2339) * build(deps): bump mkdocs-material from 6.2.3 to 6.2.8 * build(deps): bump codecov/codecov-action from v1.1.1 to v1.2.1 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from v1.1.1 to v1.2.1. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v1.1.1...e156083f13aff6830c92fc5faa23505779fbf649) Signed-off-by: dependabot[bot] * build(deps): bump pytest-cov from 2.10.1 to 2.11.1 Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.10.1 to 2.11.1. - [Release notes](https://github.com/pytest-dev/pytest-cov/releases) - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v2.10.1...v2.11.1) Signed-off-by: dependabot[bot] * build(deps): bump pytest-mock from 3.4.0 to 3.5.1 Bumps [pytest-mock](https://github.com/pytest-dev/pytest-mock) from 3.4.0 to 3.5.1. - [Release notes](https://github.com/pytest-dev/pytest-mock/releases) - [Changelog](https://github.com/pytest-dev/pytest-mock/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-mock/compare/v3.4.0...v3.5.1) Signed-off-by: dependabot[bot] * build(deps): bump isort from 5.6.4 to 5.7.0 Bumps [isort](https://github.com/pycqa/isort) from 5.6.4 to 5.7.0. - [Release notes](https://github.com/pycqa/isort/releases) - [Changelog](https://github.com/PyCQA/isort/blob/develop/CHANGELOG.md) - [Commits](https://github.com/pycqa/isort/compare/5.6.4...5.7.0) Signed-off-by: dependabot[bot] * build(deps): bump mypy from 0.790 to 0.800 * build(deps): bump pytest from 6.2.1 to 6.2.2 * build(deps): bump coverage from 5.3.1 to 5.4 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 10 +++++----- docs/requirements.txt | 2 +- pydantic/typing.py | 1 + tests/requirements-linting.txt | 4 ++-- tests/requirements-testing.txt | 10 +++++----- 5 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53c7b15..14426a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: run: make test - run: coverage xml - - uses: codecov/codecov-action@v1.1.1 + - uses: codecov/codecov-action@v1.2.1 with: file: ./coverage.xml env_vars: COMPILED,DEPS,PYTHON,OS @@ -87,7 +87,7 @@ jobs: run: make test - run: coverage xml - - uses: codecov/codecov-action@v1.1.1 + - uses: codecov/codecov-action@v1.2.1 with: file: ./coverage.xml env_vars: COMPILED,DEPS,PYTHON,OS @@ -105,7 +105,7 @@ jobs: run: make test - run: coverage xml - - uses: codecov/codecov-action@v1.1.1 + - uses: codecov/codecov-action@v1.2.1 with: file: ./coverage.xml env_vars: COMPILED,DEPS,PYTHON,OS @@ -143,7 +143,7 @@ jobs: - run: coverage xml - - uses: codecov/codecov-action@v1.1.1 + - uses: codecov/codecov-action@v1.2.1 with: file: ./coverage.xml env_vars: COMPILED,DEPS,PYTHON,OS @@ -229,7 +229,7 @@ jobs: CIBW_SKIP: '*-win32' CIBW_PLATFORM: '${{ matrix.platform || matrix.os }}' CIBW_BEFORE_BUILD: 'pip install -U cython' - CIBW_TEST_REQUIRES: 'pytest==6.1.1 pytest-mock==3.3.1' + CIBW_TEST_REQUIRES: 'pytest==6.2.2 pytest-mock==3.5.1' CIBW_TEST_COMMAND: 'pytest {project}/tests' CIBW_MANYLINUX_X86_64_IMAGE: 'manylinux2014' CIBW_MANYLINUX_I686_IMAGE: 'manylinux2014' diff --git a/docs/requirements.txt b/docs/requirements.txt index 1b8ba10..0b6e5dc 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -3,7 +3,7 @@ flake8==3.8.4 flake8-quotes==3.2.0 mkdocs==1.1.2 mkdocs-exclude==1.0.2 -mkdocs-material==6.2.3 +mkdocs-material==6.2.8 markdown-include==0.6.0 sqlalchemy orjson diff --git a/pydantic/typing.py b/pydantic/typing.py index 8f8cbac..e04470f 100644 --- a/pydantic/typing.py +++ b/pydantic/typing.py @@ -205,6 +205,7 @@ __all__ = ( 'CallableGenerator', 'get_args', 'get_origin', + 'typing_base', ) diff --git a/tests/requirements-linting.txt b/tests/requirements-linting.txt index 0dc0c06..1a2f8b7 100644 --- a/tests/requirements-linting.txt +++ b/tests/requirements-linting.txt @@ -1,8 +1,8 @@ black==20.8b1 flake8==3.8.4 flake8-quotes==3.2.0 -isort==5.6.4 -mypy==0.790 +isort==5.7.0 +mypy==0.800 pycodestyle==2.6.0 pyflakes==2.2.0 twine==3.3.0 diff --git a/tests/requirements-testing.txt b/tests/requirements-testing.txt index beb21c5..ec4398d 100644 --- a/tests/requirements-testing.txt +++ b/tests/requirements-testing.txt @@ -1,8 +1,8 @@ -coverage==5.3.1 +coverage==5.4 # pin importlib-metadata as upper versions need typing-extensions to work if on python < 3.8 importlib-metadata==3.1.0;python_version<"3.8" -mypy==0.790 -pytest==6.2.1 -pytest-cov==2.10.1 -pytest-mock==3.4.0 +mypy==0.800 +pytest==6.2.2 +pytest-cov==2.11.1 +pytest-mock==3.5.1 pytest-sugar==0.9.4