We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adb3cc9 commit dfb7b35Copy full SHA for dfb7b35
CHANGELOG.md
@@ -10,6 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
> breaking changes may be introduced
11
> at any time without warning.
12
13
+## [0.1.8] - 2024-06-05
14
+
15
+### Fixed
16
17
+- Fixed an incorrect `import` shim in `_typing.py`,
18
+ resulting in the library failing to import on Python 3.12.
19
20
## [0.1.7] - 2024-06-05
21
22
### Changed
src/libretro/_typing.py
@@ -1,7 +1,8 @@
1
import sys
2
3
if sys.version_info >= (3, 12):
4
- from collections.abc import Buffer, override
+ from collections.abc import Buffer
5
+ from typing import override
6
else:
7
from typing_extensions import Buffer, override
8
0 commit comments