mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
42afb17e36
Summary: Python 2 only needs to be supported for the sake of old documents and formulas. This doesn't apply to the separate sandboxes that parse files for imports. Using Python 3 only allows using newer libraries and library versions. In particular, the latest version of openpyxl doesn't support Python 2. This will also make it easier to make other similar changes in the future, such as replacing messytables with a modern library. See https://grist.slack.com/archives/C0234CPPXPA/p1661261829343999?thread_ts=1661260442.837959&cid=C0234CPPXPA The latest openpyxl is better at handling a particular edge case with broken dates in Excel, but still doesn't quite do what we want, so we monkeypatch it. Discussion: https://grist.slack.com/archives/C02EGJ1FUCV/p1661440851911869?thread_ts=1661154219.515549&cid=C02EGJ1FUCV Setting `preferredPythonVersion` to '3' in SafePythonComponent ensures that JS always creates import sandboxes that use Python 3. Within Python, a module used by all imports will raise an error in Python 2. Python unit tests of imports are now only run in Python 3, using the `load_tests` protocol of `unittest`. Test Plan: Mostly existing tests. Added another strange date to the Excel fixture. Reviewers: dsagal Reviewed By: dsagal Subscribers: dsagal Differential Revision: https://phab.getgrist.com/D3606 |
||
---|---|---|
.. | ||
CustomSectionAPI-ti.ts | ||
CustomSectionAPI.ts | ||
DocApiTypes-ti.ts | ||
DocApiTypes.ts | ||
FileParserAPI-ti.ts | ||
FileParserAPI.ts | ||
grist-plugin-api.ts | ||
GristAPI-ti.ts | ||
GristAPI.ts | ||
GristData-ti.ts | ||
GristData.ts | ||
GristTable-ti.ts | ||
GristTable.ts | ||
gutil.ts | ||
ImportSourceAPI-ti.ts | ||
ImportSourceAPI.ts | ||
InternalImportSourceAPI-ti.ts | ||
InternalImportSourceAPI.ts | ||
objtypes.ts | ||
PluginManifest-ti.ts | ||
PluginManifest.ts | ||
README.md | ||
RenderOptions-ti.ts | ||
RenderOptions.ts | ||
StorageAPI-ti.ts | ||
StorageAPI.ts | ||
TableOperations.ts | ||
TableOperationsImpl.ts | ||
tsconfig.json | ||
TypeCheckers.ts | ||
WidgetAPI-ti.ts | ||
WidgetAPI.ts |
Methods here are available for use in Grist custom widgets.