-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Backward compatible type subscriptions/unions (#48)
* fix: Backward compatible type subscriptions/unions Previously, the codebase specified support for Python>=3.8, when it used `|` type union syntax (introduced in 3.10), and subscriptable built-in types (introduced in 3.9). This change uses earlier syntax in order to allow 3.8 interpreters to handle type specific code. Signed-off-by: Sam Lock <[email protected]>
- Loading branch information
1 parent
b84b976
commit a6558dc
Showing
5 changed files
with
342 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
## Unreleased | ||
|
||
### Bug fixes | ||
|
||
- Backward compatible type subscriptions/unions | ||
|
||
## v0.10.3 (2024-01-18) | ||
|
||
### Chores | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.