Skip to content

Commit c5f6fbc

Browse files
committed
Add: Support for Blender 4.3
1 parent b8ace8c commit c5f6fbc

File tree

7 files changed

+17
-10
lines changed

7 files changed

+17
-10
lines changed

.github/workflows/fake-bpy-module-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
"2.80", "2.81", "2.82", "2.83",
6060
"2.90", "2.91", "2.92", "2.93",
6161
"3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6",
62-
"4.0", "4.1", "4.2"
62+
"4.0", "4.1", "4.2", "4.3"
6363
]
6464
steps:
6565
- name: Checkout repo
@@ -179,7 +179,7 @@ jobs:
179179
"2.80", "2.81", "2.82", "2.83",
180180
"2.90", "2.91", "2.92", "2.93",
181181
"3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6",
182-
"4.0", "4.1", "4.2"
182+
"4.0", "4.1", "4.2", "4.3"
183183
]
184184
steps:
185185
- name: Fetch artifacts
@@ -211,7 +211,7 @@ jobs:
211211
"2.80", "2.81", "2.82", "2.83",
212212
"2.90", "2.91", "2.92", "2.93",
213213
"3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6",
214-
"4.0", "4.1", "4.2"
214+
"4.0", "4.1", "4.2", "4.3"
215215
]
216216
steps:
217217
- name: Fetch Artifacts
@@ -241,7 +241,7 @@ jobs:
241241
"2.80", "2.81", "2.82", "2.83",
242242
"2.90", "2.91", "2.92", "2.93",
243243
"3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6",
244-
"4.0", "4.1", "4.2"
244+
"4.0", "4.1", "4.2", "4.3"
245245
]
246246
steps:
247247
- name: Fetch Artifacts

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ being too big for intelliSense to work.*
8888
|4.0|[https://pypi.org/project/fake-bpy-module-4.0/](https://pypi.org/project/fake-bpy-module-4.0/)|
8989
|4.1|[https://pypi.org/project/fake-bpy-module-4.1/](https://pypi.org/project/fake-bpy-module-4.1/)|
9090
|4.2|[https://pypi.org/project/fake-bpy-module-4.2/](https://pypi.org/project/fake-bpy-module-4.2/)|
91+
|4.3|[https://pypi.org/project/fake-bpy-module-4.3/](https://pypi.org/project/fake-bpy-module-4.3/)|
9192
|latest|[https://pypi.org/project/fake-bpy-module/](https://pypi.org/project/fake-bpy-module/)|
9293
||[https://pypi.org/project/fake-bpy-module-latest/](https://pypi.org/project/fake-bpy-module-latest/)|
9394

src/fake_bpy_module/analyzer/directives.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def run(self) -> list[ModuleNode]:
270270
elif config.get_target_version() in [
271271
"2.91", "2.92", "2.93",
272272
"3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6",
273-
"4.0", "4.1", "4.2",
273+
"4.0", "4.1", "4.2", "4.3",
274274
"latest"]:
275275
if module_name == "bpy.data":
276276
module_name = "bpy"

src/fake_bpy_module/support.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"2.80", "2.81", "2.82", "2.83",
1515
"2.90", "2.91", "2.92", "2.93",
1616
"3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6",
17-
"4.0", "4.1", "4.2",
17+
"4.0", "4.1", "4.2", "4.3",
1818
"latest"
1919
]
2020

@@ -29,7 +29,7 @@
2929
"2.80", "2.81", "2.82", "2.83",
3030
"2.90", "2.91", "2.92", "2.93",
3131
"3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6",
32-
"4.0", "4.1", "4.2",
32+
"4.0", "4.1", "4.2", "4.3",
3333
"latest"
3434
]
3535

tests/pylint_cycles.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ declare -r SUPPORTED_BLENDER_VERSIONS=(
1919
"2.78" "2.79" "2.80" "2.81" "2.82" "2.83"
2020
"2.90" "2.91" "2.92" "2.93"
2121
"3.0" "3.1" "3.2" "3.3" "3.4" "3.5" "3.6"
22-
"4.0" "4.1" "4.2"
22+
"4.0" "4.1" "4.2" "4.3"
2323
"latest"
2424
)
2525
declare -r SUPPORTED_UPBGE_VERSIONS=(
@@ -49,6 +49,7 @@ declare -A BLENDER_TAG_NAME=(
4949
["v4.0"]="v4.0.0"
5050
["v4.1"]="v4.1.0"
5151
["v4.2"]="v4.2.0"
52+
["v4.3"]="v4.3.0"
5253
["vlatest"]="main"
5354
)
5455
declare -A UPBGE_TAG_NAME=(

tools/pip_package/build_pip_package.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SUPPORTED_BLENDER_VERSIONS=(
77
"2.78" "2.79" "2.80" "2.81" "2.82" "2.83"
88
"2.90" "2.91" "2.92" "2.93"
99
"3.0" "3.1" "3.2" "3.3" "3.4" "3.5" "3.6"
10-
"4.0" "4.1" "4.2"
10+
"4.0" "4.1" "4.2" "4.3"
1111
"latest"
1212
)
1313
SUPPORTED_UPBGE_VERSIONS=(
@@ -37,6 +37,7 @@ declare -A BLENDER_TAG_NAME=(
3737
["v4.0"]="v4.0.0"
3838
["v4.1"]="v4.1.0"
3939
["v4.2"]="v4.2.0"
40+
["v4.3"]="v4.3.0"
4041
["vlatest"]="main"
4142
)
4243
declare -A UPBGE_TAG_NAME=(

tools/utils/download_blender.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SUPPORTED_VERSIONS=(
77
"2.78" "2.79" "2.80" "2.81" "2.82" "2.83"
88
"2.90" "2.91" "2.92" "2.93"
99
"3.0" "3.1" "3.2" "3.3" "3.4" "3.5" "3.6"
10-
"4.0" "4.1" "4.2"
10+
"4.0" "4.1" "4.2" "4.3"
1111
"all"
1212
)
1313

@@ -49,6 +49,7 @@ declare -A BLENDER_DOWNLOAD_URL_WIN64=(
4949
["v4.0"]="https://download.blender.org/release/Blender4.0/blender-4.0.0-windows-x64.zip"
5050
["v4.1"]="https://download.blender.org/release/Blender4.1/blender-4.1.0-windows-x64.zip"
5151
["v4.2"]="https://download.blender.org/release/Blender4.2/blender-4.2.0-windows-x64.zip"
52+
["v4.3"]="https://download.blender.org/release/Blender4.3/blender-4.3.0-windows-x64.zip"
5253
)
5354

5455
declare -A BLENDER_DOWNLOAD_URL_LINUX=(
@@ -72,6 +73,7 @@ declare -A BLENDER_DOWNLOAD_URL_LINUX=(
7273
["v4.0"]="https://download.blender.org/release/Blender4.0/blender-4.0.0-linux-x64.tar.xz"
7374
["v4.1"]="https://download.blender.org/release/Blender4.1/blender-4.1.0-linux-x64.tar.xz"
7475
["v4.2"]="https://download.blender.org/release/Blender4.2/blender-4.2.0-linux-x64.tar.xz"
76+
["v4.3"]="https://download.blender.org/release/Blender4.3/blender-4.3.0-linux-x64.tar.xz"
7577
)
7678

7779
declare -A NEED_MOVE_MACOSX=(
@@ -103,6 +105,7 @@ declare -A NEED_MOVE_LINUX=(
103105
["v4.0"]="blender-4.0.0-linux-x64"
104106
["v4.1"]="blender-4.1.0-linux-x64"
105107
["v4.2"]="blender-4.2.0-linux-x64"
108+
["v4.3"]="blender-4.3.0-linux-x64"
106109
)
107110

108111
declare -A BLENDER_CHECKSUM_URL=(
@@ -126,6 +129,7 @@ declare -A BLENDER_CHECKSUM_URL=(
126129
["v4.0"]="https://download.blender.org/release/Blender4.0/blender-4.0.0.md5"
127130
["v4.1"]="https://download.blender.org/release/Blender4.1/blender-4.1.0.md5"
128131
["v4.2"]="https://download.blender.org/release/Blender4.2/blender-4.2.0.md5"
132+
["v4.3"]="https://download.blender.org/release/Blender4.3/blender-4.3.0.md5"
129133
)
130134

131135
function get_extractor() {

0 commit comments

Comments
 (0)