From 55a1ea9c51aa673c4685fe95ace2fdf689f86a25 Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Tue, 5 Sep 2023 06:59:15 -0700 Subject: [PATCH] Update `requirements.txt` to update pydantic minimum version and put `py.typed` in `MANIFEST.in` (#1767) --- CHANGELOG.md | 6 +++++- MANIFEST.in | 1 + requirements.txt | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c65d9554e..2e08a1136 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [UNRELEASED] -## Added +### Added - Added a `py.typed` file to support type-checking +### Changed + +- Raised the minimum version of Pydantic from 1.10.1 to 2.1.1 in `requirements.txt` + ## [0.228.0-rc.0] - 2023-08-31 ### Authors diff --git a/MANIFEST.in b/MANIFEST.in index dcc69da71..742cda7d1 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,7 @@ include VERSION include requirements.txt include requirements-client.txt +include covalent/py.typed recursive-include covalent/executor/executor_plugins/ * recursive-include covalent_dispatcher/_service/ * recursive-include covalent_migrations/ * diff --git a/requirements.txt b/requirements.txt index c7338385b..020765428 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,7 +10,7 @@ furl>=2.1.3 natsort>=8.4.0 networkx>=2.8.6 psutil>=5.9.0 -pydantic>=1.10.1 +pydantic>=2.1.1 python-socketio>=5.7.1 requests>=2.24.0 rich>=12.0.0,<=13.3.5