Commit: aea2287af33c17c5f310ddb20f57d23d2cbe09ac Author: Brecht Van Lommel Date: Thu Oct 21 18:31:17 2021 +0200 Branches: master https://developer.blender.org/rBaea2287af33c17c5f310ddb20f57d23d2cbe09ac
Tests: updated Python bundled modules test Add the new zstandard module, as well as previously missing ones. Ref D12777, T88438 =================================================================== M tests/python/bl_bundled_modules.py =================================================================== diff --git a/tests/python/bl_bundled_modules.py b/tests/python/bl_bundled_modules.py index d3fe2861d9e..012eaf8246d 100644 --- a/tests/python/bl_bundled_modules.py +++ b/tests/python/bl_bundled_modules.py @@ -21,9 +21,14 @@ # Test that modules we ship with our Python installation are available import bz2 +import certifi import ctypes +import cython import lzma import numpy +import requests import sqlite3 import ssl +import urllib3 import zlib +import zstandard _______________________________________________ Bf-blender-cvs mailing list [email protected] List details, subscription details or unsubscribe: https://lists.blender.org/mailman/listinfo/bf-blender-cvs
