From 52889203acb968feff3c9b8d5db12638cb86d6e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Oct 2020 09:53:28 +0000 Subject: [PATCH] Bump devtools from 0.6.0 to 0.6.1 (#2037) * Bump devtools from 0.6.0 to 0.6.1 Bumps [devtools](https://github.com/samuelcolvin/python-devtools) from 0.6.0 to 0.6.1. - [Release notes](https://github.com/samuelcolvin/python-devtools/releases) - [Changelog](https://github.com/samuelcolvin/python-devtools/blob/master/HISTORY.md) - [Commits](https://github.com/samuelcolvin/python-devtools/compare/v0.6...v0.6.1) Signed-off-by: dependabot[bot] * remove unnecessary dependencies * tweaks while testing 3.9 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Samuel Colvin --- .github/workflows/ci.yml | 13 +++---------- .gitignore | 3 ++- Makefile | 2 +- benchmarks/requirements.txt | 2 +- docs/requirements.txt | 8 +++----- requirements.txt | 2 +- 6 files changed, 11 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67d4ad8..b411771 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: run: make check-dist test-linux: - name: test py${{ matrix.python-version }} on ubuntu + name: test py${{ matrix.python-version }} on linux runs-on: ubuntu-latest strategy: fail-fast: false @@ -195,15 +195,8 @@ jobs: strategy: fail-fast: false matrix: - os: - - ubuntu - - macos - - windows - python-version: - - '6' - - '7' - - '8' - - '9' + os: [ubuntu , macos , windows] + python-version: ['6', '7', '8', '9'] include: - os: ubuntu platform: linux diff --git a/.gitignore b/.gitignore index b653170..2625633 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ venv/ env36/ env37/ env38/ +env39/ Pipfile *.lock *.py[cod] @@ -32,4 +33,4 @@ pydantic/*.so /sandbox/ /.ghtopdep_cache/ /fastapi/ -/codecov.sh \ No newline at end of file +/codecov.sh diff --git a/Makefile b/Makefile index 69cad5f..8aa686f 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,7 @@ install-benchmarks: install-pydantic pip install -U -r benchmarks/requirements.txt .PHONY: install -install: install-linting install-testing +install: install-testing install-linting @echo 'installed development requirements' .PHONY: build-trace diff --git a/benchmarks/requirements.txt b/benchmarks/requirements.txt index 9033b17..6f3bf9a 100644 --- a/benchmarks/requirements.txt +++ b/benchmarks/requirements.txt @@ -1,5 +1,5 @@ # no versions since benchmarks should always run with the most recent version of each package -devtools +devtools==0.6.1 python-dateutil trafaret diff --git a/docs/requirements.txt b/docs/requirements.txt index 1ce891d..8f3b0d7 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -2,11 +2,9 @@ ansi2html==1.5.2 flake8==3.8.4 flake8-quotes==3.2.0 mkdocs==1.1.2 -markdown==3.3.1 mkdocs-exclude==1.0.2 mkdocs-material==6.1.0 markdown-include==0.6.0 -pygments==2.7.1 -sqlalchemy # pyup: ignore -orjson # pyup: ignore -ujson # pyup: ignore +sqlalchemy +orjson +ujson diff --git a/requirements.txt b/requirements.txt index ee93425..80e8d9c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ # requirements for compilation and from setup.py so dependabot prompts us to test with latest version of these packages Cython==0.29.21;sys_platform!='win32' -devtools==0.6.0 +devtools==0.6.1 email-validator==1.1.1 dataclasses==0.6; python_version < '3.7' typing-extensions==3.7.4.1; python_version < '3.8'