Skip to content

Commit

Permalink
Release 0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Jun 5, 2024
1 parent adb3cc9 commit dfb7b35
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
> breaking changes may be introduced
> at any time without warning.
## [0.1.8] - 2024-06-05

### Fixed

- Fixed an incorrect `import` shim in `_typing.py`,
resulting in the library failing to import on Python 3.12.

## [0.1.7] - 2024-06-05

### Changed
Expand Down
3 changes: 2 additions & 1 deletion src/libretro/_typing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import sys

if sys.version_info >= (3, 12):
from collections.abc import Buffer, override
from collections.abc import Buffer
from typing import override
else:
from typing_extensions import Buffer, override

Expand Down

0 comments on commit dfb7b35

Please sign in to comment.