Skip to content

Commit

Permalink
Hotfix: fix broken env loading by excluding pydantic-settings 2.6.0 (p…
Browse files Browse the repository at this point in the history
  • Loading branch information
object-Object committed Oct 26, 2024
1 parent 6cc3354 commit d0deb1d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and [Pydantic's HISTORY.md](https://github.com/pydantic/pydantic/blob/main/HISTORY.md), and this project *mostly* adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## `1!0.1.0a21`

### Fixed

* Fix broken environment variable loading by adding a dependency exclusion for Pydantic Settings v2.6.0 (see [pydantic/pydantic-settings#445](https://github.com/pydantic/pydantic-settings/issues/445)).

## `1!0.1.0a20`

### Added
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ dependencies = [
"ordered-set~=4.1",
"packaging~=23.2",
"pluggy~=1.3",
"pydantic_settings~=2.0",
# !=2.6.0 - https://github.com/pydantic/pydantic-settings/issues/445
"pydantic_settings~=2.0,!=2.6.0",
"pydantic>=2.7.1,<3,!=2.9.0",
"pygithub~=2.1",
"pyjson5~=1.6",
Expand Down

0 comments on commit d0deb1d

Please sign in to comment.