hotfix: Hotfix Pydantic dependency constraints.
docs: Add mention of the constraints fix Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> chore: bump version Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> fix: PyPi constraints for Pydantic Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com> ci: add ability to release from tag branches. Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>
This commit is contained in:
parent
6648eb52aa
commit
96b80ec4f4
|
@ -4,6 +4,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
- 'tag/v**'
|
||||
|
||||
jobs:
|
||||
build-and-publish:
|
||||
|
|
|
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.6.3] — 2022-11-21
|
||||
### Fixed
|
||||
- Fixed Pydantic extras dependency constraint.
|
||||
|
||||
## [1.6.2] — 2022-10-18
|
||||
### Added
|
||||
- Added `get_attributes` API to the `CloudEvent` API. The method returns a read-only
|
||||
|
|
|
@ -12,4 +12,4 @@
|
|||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
__version__ = "1.6.2"
|
||||
__version__ = "1.6.3"
|
||||
|
|
4
setup.py
4
setup.py
|
@ -71,8 +71,8 @@ if __name__ == "__main__":
|
|||
install_requires=["deprecation>=2.0,<3.0"],
|
||||
extras_require={
|
||||
"pydantic": [
|
||||
"pydantic>=1.0.0<1.9.0; python_version <= '3.6'",
|
||||
"pydantic>=1.0.0<2.0; python_version > '3.6'",
|
||||
"pydantic>=1.0.0,<1.9.0;python_version<'3.7'",
|
||||
"pydantic>=1.0.0,<2.0;python_version>='3.7'",
|
||||
],
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue