Samuel Colvin
abea8232ee
speedup __instancecheck__ check on BaseModel when they fail ( #4081 )
...
* speedup __instancecheck__ check on BaseModel when they fail
* add change description
* linting
2022-05-17 14:13:36 +01:00
David Brochart
a7e896c5a3
Update Jupyter's use of pydantic ( #4082 )
...
* Update Jupyter's use of pydantic
* Fix markdown link
2022-05-16 11:26:31 +01:00
Maxim Martynov
cc54acb612
Fix missing port in HttpUrl.build() result ( #3652 )
...
* Port number is no longer being ignored by HttpUrl.build()
* Update tests/test_networks.py
Co-authored-by: Samuel Colvin <samcolvin@gmail.com >
* Update networks.py
* Update tests/test_networks.py
Co-authored-by: Samuel Colvin <samcolvin@gmail.com >
* Update test_networks.py
* Update test_networks.py
* update change description
Co-authored-by: Samuel Colvin <samcolvin@gmail.com >
Co-authored-by: Samuel Colvin <s@muelcolvin.com >
2022-05-14 17:35:39 +01:00
Samuel Colvin
122dd2f24e
fix ClassVars, better fix for #3679 ( #4077 )
2022-05-14 17:27:52 +01:00
Alex
f69012a5aa
fix: error checking inheritance when using PEP585 and PEP604 type hints ( #3681 )
...
* Add tests
* Fix the issue
* Add changes file
* Improved convert_generics
* Add default fallback to convert_generics
Improved Annotated and Literal handling
* Fix Cython doesn't support generic types (PEP560)
Watch cython issue cython/cython#2753
Previous implementation can be used after cython 3.0 release
* Add custom type test
* Cosmetic fixes
Co-authored-by: Samuel Colvin <samcolvin@gmail.com >
* Fix typos
* Add SelfReferencing test validation
Add parametrization to
* Fix: parametrization caused test discovery problem
* Better explanation for a test case
* Better assertions for model creation tests
* Rerun CI
Co-authored-by: Samuel Colvin <samcolvin@gmail.com >
2022-05-14 17:26:12 +01:00
Samuel Colvin
9baec86270
try speeding up ci using caching and rearranging jobs ( #3974 )
...
* try speeding up ci using caching and rearranging jobs
* fix job references
* cache lint and docs install
* tweak caching
* tweak caching to avoid conflicts
* correct use of runner.os
* bump
* stop skipping steps depending on cache
* prevent hypothesis flakeyness
* try skipping install steps again
* remove skipping install :-(
2022-05-14 15:32:53 +01:00
Samuel Colvin
b246bc6859
update mypy ci ( #4073 )
...
* update mypy ci
* test against older mypy
2022-05-14 12:31:29 +01:00
dependabot[bot]
3e9cd71325
build(deps): bump mypy from 0.942 to 0.950 ( #4062 )
...
* build(deps): bump mypy from 0.942 to 0.950
Bumps [mypy](https://github.com/python/mypy ) from 0.942 to 0.950.
- [Release notes](https://github.com/python/mypy/releases )
- [Commits](https://github.com/python/mypy/compare/v0.942...v0.950 )
---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* ignore ChainMap type
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Samuel Colvin <s@muelcolvin.com >
2022-05-14 09:32:54 +01:00
Samuel Colvin
8718db581d
Fix JSON Schema generation for Discriminated Unions within lists. ( #4071 )
...
* Fix JSON Schema generation for Discriminated Unions within lists.
* linting
* fix mypy
2022-05-14 07:26:34 +01:00
Blake Naccarato
f419710381
Fix typo # pylance: ignore > # pyright: ignore ( #4072 )
...
In #3972 , `# pyright: ignore` was added in multiple places in the docs, and `# pylance: ignore` only once. I believe it's a typo, as AFAIK such a typing ignore comment flag doesn't exist.
2022-05-13 19:10:55 +01:00
dependabot[bot]
268588b08d
build(deps): bump mkdocs-material from 8.2.8 to 8.2.14 ( #4063 )
...
Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material ) from 8.2.8 to 8.2.14.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases )
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG )
- [Commits](https://github.com/squidfunk/mkdocs-material/compare/8.2.8...8.2.14 )
---
updated-dependencies:
- dependency-name: mkdocs-material
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-13 16:29:06 +01:00
Adrian Garcia Badaracco
e5540296cc
Fix issue with in-place modification of FieldInfo ( #4067 )
...
* Fix info with in-place modification of field info
* add changes
* add test for 3714
* Update changes/4067-adriangb.md
Co-authored-by: Samuel Colvin <samcolvin@gmail.com >
Co-authored-by: Samuel Colvin <samcolvin@gmail.com >
2022-05-13 15:16:32 +01:00
Samuel Colvin
a45276d6b1
guard against ClassVar in fields ( #4064 )
...
* guard against ClassVar in fields, fix #3679
* fix linting
* skipif for test_class_var_forward_ref
2022-05-13 15:06:53 +01:00
Yurii Karabas
42acd8f8d2
Fix issue with self-referencing dataclass ( #3713 )
...
* Fix issue with self-referencing dataclass
* Fix mypy issue
2022-05-11 19:09:13 +01:00
Luis R
faee3301eb
Fix regression in handling of nested dataclasses in get_flat_models_from_field ( #3819 )
...
* add test for nested python dataclass schema generation
* fix handling of dataclasses in `get_flat_models_from_field`
* add change note
2022-05-11 19:02:37 +01:00
Samuel Colvin
74403c2f15
test pyright with pydantic ( #3972 )
...
* test pyright with pydantic
* rename file to avoid pytest running it
* try another name 😴
* add docs about BaseSettings and Field
* add change
2022-05-11 19:00:37 +01:00
dependabot[bot]
dc07bc5a49
build(deps): bump pre-commit from 2.17.0 to 2.19.0 ( #4061 )
...
Bumps [pre-commit](https://github.com/pre-commit/pre-commit ) from 2.17.0 to 2.19.0.
- [Release notes](https://github.com/pre-commit/pre-commit/releases )
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md )
- [Commits](https://github.com/pre-commit/pre-commit/compare/v2.17.0...v2.19.0 )
---
updated-dependencies:
- dependency-name: pre-commit
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-11 18:56:21 +01:00
dependabot[bot]
a1b7aa2a63
build(deps): bump hypothesis from 6.41.0 to 6.46.3 ( #4059 )
...
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis ) from 6.41.0 to 6.46.3.
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases )
- [Commits](https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.41.0...hypothesis-python-6.46.3 )
---
updated-dependencies:
- dependency-name: hypothesis
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-11 18:56:10 +01:00
dependabot[bot]
150ee62d4a
build(deps): bump email-validator from 1.1.3 to 1.2.1 ( #4060 )
...
Bumps [email-validator](https://github.com/JoshData/python-email-validator ) from 1.1.3 to 1.2.1.
- [Release notes](https://github.com/JoshData/python-email-validator/releases )
- [Commits](https://github.com/JoshData/python-email-validator/compare/v1.1.3...v1.2.1 )
---
updated-dependencies:
- dependency-name: email-validator
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-11 18:56:01 +01:00
dependabot[bot]
d128f45077
build(deps): bump actions/download-artifact from 2 to 3 ( #4034 )
...
Bumps [actions/download-artifact](https://github.com/actions/download-artifact ) from 2 to 3.
- [Release notes](https://github.com/actions/download-artifact/releases )
- [Commits](https://github.com/actions/download-artifact/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-11 18:00:51 +01:00
dependabot[bot]
b826ff65ec
build(deps): bump actions/upload-artifact from 2 to 3 ( #4035 )
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 2 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](https://github.com/actions/upload-artifact/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-11 18:00:41 +01:00
dependabot[bot]
59dffb6942
build(deps): bump pytest from 7.1.1 to 7.1.2 ( #4037 )
...
Bumps [pytest](https://github.com/pytest-dev/pytest ) from 7.1.1 to 7.1.2.
- [Release notes](https://github.com/pytest-dev/pytest/releases )
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pytest-dev/pytest/compare/7.1.1...7.1.2 )
---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-11 18:00:29 +01:00
dependabot[bot]
3726059610
build(deps): bump mkdocs-material from 8.2.8 to 8.2.12 ( #4038 )
...
Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material ) from 8.2.8 to 8.2.12.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases )
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG )
- [Commits](https://github.com/squidfunk/mkdocs-material/compare/8.2.8...8.2.12 )
---
updated-dependencies:
- dependency-name: mkdocs-material
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-11 18:00:13 +01:00
dependabot[bot]
7392d2ea85
build(deps): bump typing-extensions from 4.1.1 to 4.2.0 ( #4040 )
...
Bumps [typing-extensions](https://github.com/python/typing ) from 4.1.1 to 4.2.0.
- [Release notes](https://github.com/python/typing/releases )
- [Changelog](https://github.com/python/typing/blob/master/typing_extensions/CHANGELOG.md )
- [Commits](https://github.com/python/typing/compare/4.1.1...4.2.0 )
---
updated-dependencies:
- dependency-name: typing-extensions
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-05-11 17:59:22 +01:00
Eric Jolibois
5490ad5173
fix: Config.copy_on_model_validation does a deep copy and not a shallow one ( #3642 )
...
* fix: `Config.copy_on_model_validation` does a deep copy and not a shallow one
closes #3641
* fix: typo
* use python 3.10 to run fastapi tests
* fix fastapi test call
Co-authored-by: Samuel Colvin <s@muelcolvin.com >
2022-05-11 17:03:48 +01:00
Samuel Colvin
8997cc5961
Remove benchmarks completely ( #3973 )
...
* removing benchmarks completely
* [no ci] add change
2022-04-04 13:29:17 +01:00
Samuel Colvin
b25e22f7d4
[no ci] correct name of change file
2022-04-04 13:22:07 +01:00
Gary Donovan
7f90b2f342
Remove incorrect comment about lazy evaluation of setting sources ( #3806 )
...
* Remove incorrect comment about lazy evaluation of setting sources
It looks like the current implementation always evaluates every source (https://github.com/samuelcolvin/pydantic/blob/9d631a3429a66f30742c1a52c94ac18ec6ba848d/pydantic/env_settings.py#L73 ) before coalescing them into a single dictionary to pass to `BaseModel`. So the comment about lazy evaluation is incorrect and should be removed.
* Add changelog
2022-04-02 15:25:43 +01:00
Stefan Scherfke
36c53ceaa3
Fix pytest crashes with hypothesis and pydantic ( #3727 )
...
Pytest (sometimes?) crashes when it is invoked with `-vv` and pydantic and hypthesis are installed.
This is because `_registered(typ)` modifies `_DEFINED_TYPES` while it is being iterated:
```
INTERNALERROR> File ".../lib/python3.9/site-packages/pydantic/_hypothesis_plugin.py", line 361, in <module>
INTERNALERROR> for typ in pydantic.types._DEFINED_TYPES:
INTERNALERROR> File ".../lib/python3.9/_weakrefset.py", line 65, in __iter__
INTERNALERROR> for itemref in self.data:
INTERNALERROR> RuntimeError: Set changed size during iteration
```
2022-04-02 15:11:48 +01:00
dependabot[bot]
f96a6131a3
build(deps): bump mypy from 0.931 to 0.942 ( #3968 )
...
* build(deps): bump mypy from 0.931 to 0.942
Bumps [mypy](https://github.com/python/mypy ) from 0.931 to 0.942.
- [Release notes](https://github.com/python/mypy/releases )
- [Commits](https://github.com/python/mypy/compare/v0.931...v0.942 )
---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* build(deps): bump mypy from 0.931 to 0.942
Bumps [mypy](https://github.com/python/mypy ) from 0.931 to 0.942.
- [Release notes](https://github.com/python/mypy/releases )
- [Commits](https://github.com/python/mypy/compare/v0.931...v0.942 )
---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* fix mypy
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Samuel Colvin <s@muelcolvin.com >
2022-04-02 14:50:07 +01:00
Samuel Colvin
f0acf6efe7
Prevent subclasses of bytes being converted to bytes ( #3707 )
...
* adding a test
* fix and add change description
2022-04-02 14:45:31 +01:00
Natan Yellin
55b34ef946
Add Robusta.dev to list of Pydantic users ( #3715 )
...
* add robusta.dev to pydantic users
* update robusta.dev description and fix typo
2022-04-02 14:42:51 +01:00
Tom Milligan
02eb182db0
fix: clarify that discriminated unions do not support singletons ( #3639 )
2022-04-02 14:06:11 +01:00
Wong Hoi Sing Edison
6e0f81c73f
CentOS 7: read_text(encoding='utf-8') ( #3625 )
...
With CentOS 7 Python 3.6, running install from source with pip failed:
sudo podman run -ti --rm centos:7
yum -y update
yum -y install epel-release
yum -y install git python3 python3-devel python3-pip python3-setuptools python3-wheel
git clone https://github.com/samuelcolvin/pydantic.git
cd pydantic
pip3 install .
With following error message:
[root@c99d0585636c pydantic]# pip3 install .
Processing /pydantic
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-91v_ixvz-build/setup.py", line 62, in <module>
history = (THIS_DIR / 'HISTORY.md').read_text()
File "/usr/lib64/python3.6/pathlib.py", line 1197, in read_text
return f.read()
File "/usr/lib64/python3.6/encodings/ascii.py", line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 14648: ordinal not in range(128)
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-91v_ixvz-build/
This PR add the required `read_text(encoding='utf-8')` for `setup.py`.
Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com >
2022-04-02 14:05:12 +01:00
Samuel Colvin
df8b2e100f
Combine dependabot prs ( #3969 )
...
* allow combining of dependabot PRs
* add combine-dependabot.yml
2022-04-02 13:44:30 +01:00
dependabot[bot]
7c05a61e4a
build(deps): bump pytest-mock from 3.6.1 to 3.7.0 ( #3967 )
...
Bumps [pytest-mock](https://github.com/pytest-dev/pytest-mock ) from 3.6.1 to 3.7.0.
- [Release notes](https://github.com/pytest-dev/pytest-mock/releases )
- [Changelog](https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pytest-dev/pytest-mock/compare/v3.6.1...v3.7.0 )
---
updated-dependencies:
- dependency-name: pytest-mock
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-02 13:25:58 +01:00
dependabot[bot]
b785f87aea
build(deps): bump typing-extensions from 4.0.1 to 4.1.1 ( #3874 )
...
Bumps [typing-extensions](https://github.com/python/typing ) from 4.0.1 to 4.1.1.
- [Release notes](https://github.com/python/typing/releases )
- [Changelog](https://github.com/python/typing/blob/master/typing_extensions/CHANGELOG )
- [Commits](https://github.com/python/typing/compare/4.0.1...4.1.1 )
---
updated-dependencies:
- dependency-name: typing-extensions
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-02 13:25:51 +01:00
dependabot[bot]
9d29aabb9c
build(deps): bump cython from 0.29.26 to 0.29.28 ( #3871 )
...
Bumps [cython](https://github.com/cython/cython ) from 0.29.26 to 0.29.28.
- [Release notes](https://github.com/cython/cython/releases )
- [Changelog](https://github.com/cython/cython/blob/master/CHANGES.rst )
- [Commits](https://github.com/cython/cython/compare/0.29.26...0.29.28 )
---
updated-dependencies:
- dependency-name: cython
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-02 13:25:43 +01:00
dependabot[bot]
c12382d00f
build(deps): bump twine from 3.7.1 to 4.0.0 ( #3965 )
...
Bumps [twine](https://github.com/pypa/twine ) from 3.7.1 to 4.0.0.
- [Release notes](https://github.com/pypa/twine/releases )
- [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst )
- [Commits](https://github.com/pypa/twine/compare/3.7.1...4.0.0 )
---
updated-dependencies:
- dependency-name: twine
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-02 08:57:22 +01:00
dependabot[bot]
d8054380d3
build(deps): bump pytest from 6.2.5 to 7.1.1 ( #3926 )
...
Bumps [pytest](https://github.com/pytest-dev/pytest ) from 6.2.5 to 7.1.1.
- [Release notes](https://github.com/pytest-dev/pytest/releases )
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst )
- [Commits](https://github.com/pytest-dev/pytest/compare/6.2.5...7.1.1 )
---
updated-dependencies:
- dependency-name: pytest
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-02 08:57:08 +01:00
dependabot[bot]
19064138e4
build(deps): bump hypothesis from 6.31.6 to 6.41.0 ( #3964 )
...
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis ) from 6.31.6 to 6.41.0.
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases )
- [Commits](https://github.com/HypothesisWorks/hypothesis/compare/hypothesis-python-6.31.6...hypothesis-python-6.41.0 )
---
updated-dependencies:
- dependency-name: hypothesis
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-02 08:56:39 +01:00
dependabot[bot]
29b8052e4e
build(deps): bump python-dotenv from 0.19.2 to 0.20.0 ( #3963 )
...
Bumps [python-dotenv](https://github.com/theskumar/python-dotenv ) from 0.19.2 to 0.20.0.
- [Release notes](https://github.com/theskumar/python-dotenv/releases )
- [Changelog](https://github.com/theskumar/python-dotenv/blob/master/CHANGELOG.md )
- [Commits](https://github.com/theskumar/python-dotenv/compare/v0.19.2...v0.20.0 )
---
updated-dependencies:
- dependency-name: python-dotenv
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-04-02 08:56:28 +01:00
dependabot[bot]
bf5fdfc618
build(deps): bump black from 21.12b0 to 22.3.0 ( #3950 )
...
* build(deps): bump black from 21.12b0 to 22.3.0
Bumps [black](https://github.com/psf/black ) from 21.12b0 to 22.3.0.
- [Release notes](https://github.com/psf/black/releases )
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md )
- [Commits](https://github.com/psf/black/commits/22.3.0 )
---
updated-dependencies:
- dependency-name: black
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
* apply new black styles, fix docs
* try upgrading pip before fastapi tests
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Samuel Colvin <s@muelcolvin.com >
2022-04-02 08:35:55 +01:00
Guilhem C
90628e1c2b
docs: fix typo in settings management page ( #3781 )
2022-04-01 19:47:05 +01:00
dependabot[bot]
d7a8272d7e
build(deps): bump mypy from 0.930 to 0.931 ( #3656 )
...
Bumps [mypy](https://github.com/python/mypy ) from 0.930 to 0.931.
- [Release notes](https://github.com/python/mypy/releases )
- [Commits](https://github.com/python/mypy/compare/v0.930...v0.931 )
---
updated-dependencies:
- dependency-name: mypy
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-01 23:30:57 +00:00
dependabot[bot]
9967f0ebe3
build(deps): bump pre-commit from 2.16.0 to 2.17.0 ( #3731 )
...
Bumps [pre-commit](https://github.com/pre-commit/pre-commit ) from 2.16.0 to 2.17.0.
- [Release notes](https://github.com/pre-commit/pre-commit/releases )
- [Changelog](https://github.com/pre-commit/pre-commit/blob/master/CHANGELOG.md )
- [Commits](https://github.com/pre-commit/pre-commit/compare/v2.16.0...v2.17.0 )
---
updated-dependencies:
- dependency-name: pre-commit
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-01 22:37:59 +00:00
Gin Cui
f3f2408e2d
Fixed a typo in decimal_encoder's doc. ( #3820 )
2022-03-01 22:37:09 +00:00
dependabot[bot]
b90e128175
build(deps): bump coverage from 6.2 to 6.3.2 ( #3839 )
...
Bumps [coverage](https://github.com/nedbat/coveragepy ) from 6.2 to 6.3.2.
- [Release notes](https://github.com/nedbat/coveragepy/releases )
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst )
- [Commits](https://github.com/nedbat/coveragepy/compare/6.2...6.3.2 )
---
updated-dependencies:
- dependency-name: coverage
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-01 22:35:04 +00:00
dependabot[bot]
1fb438bc0b
build(deps): bump mkdocs-material from 8.1.3 to 8.2.3 ( #3865 )
...
Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material ) from 8.1.3 to 8.2.3.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases )
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG )
- [Commits](https://github.com/squidfunk/mkdocs-material/compare/8.1.3...8.2.3 )
---
updated-dependencies:
- dependency-name: mkdocs-material
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-01 22:34:35 +00:00
dependabot[bot]
2b0d4d90eb
build(deps): bump actions/checkout from 2 to 3 ( #3869 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-01 22:33:43 +00:00