From e7816774675ab5395e5dac7f724c3fb4b002c809 Mon Sep 17 00:00:00 2001 From: nutti Date: Thu, 10 Oct 2024 20:30:04 +0900 Subject: [PATCH] New release (20241010) --- CHANGELOG.md | 26 +++++++++++++++++++++++++- README.md | 3 +-- pyproject.toml | 2 +- 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a65dec72..c82227e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,31 @@ # Change Log -## [Unreleased](https://github.com/nutti/fake-bpy-module/compare/20240604...main) +## [Unreleased](https://github.com/nutti/fake-bpy-module/compare/20241010...main) + + +## [20241010](https://github.com/nutti/fake-bpy-module/compare/20240604...20241010) - 2024.10.10 + +### Notice + +From this version, fake-bpy-module requires Python 3.12. + +### Updated Features + +* Support fake-bpy-module-4.2 +* Use Python 3.12 syntax for type annotations on the generated modules +* Support type alias for RNA enums + +### Other Updates + +* Enable Ruff lint on CI against both generation code and generated code +* Fix bugs + +### Contributors + +* [**@JonathanPlasse**](https://github.com/JonathanPlasse) +* [**@Road-hog123**](https://github.com/Road-hog123) +* [**@Andrej730**](https://github.com/Andrej730) ## [20240604](https://github.com/nutti/fake-bpy-module/compare/20231118...20240604) - 2024.6.4 diff --git a/README.md b/README.md index c22968c0..47592872 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,7 @@ Note: The similar project for Blender Game Engine (BGE) is available on ## Requirements -fake-bpy-module uses typing module and type hints which are available from -Python 3.8. Check your Python version is >= 3.8. +fake-bpy-module requires Python 3.12. ## Install diff --git a/pyproject.toml b/pyproject.toml index 33b849fd..f8a204d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ requires = ["setuptools"] [project] name = "fake-bpy-module" description = "Collection of the fake Blender Python API module for the code completion." -requires-python = ">=3.8" +requires-python = ">=3.12" readme = "README.md" license = {file = "LICENSE"} authors = [