Bumping required Python version to v3.9 + adding new Polyfills for IDEs.

This commit is contained in:
Ad5001 2024-09-17 20:36:46 +02:00
parent ab45109206
commit 78d7e6f310
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
2 changed files with 6 additions and 2 deletions

View file

@ -67,4 +67,8 @@ const Helper = {
const Latex = { const Latex = {
/** @type {function(string, number, string): string} */ /** @type {function(string, number, string): string} */
render: (latex_markup, font_size, color) => '', render: (latex_markup, font_size, color) => '',
} /** @type {function(string, number, string): string} */
findPrerendered: (latex_markup, font_size, color) => '',
/** @type {function(): boolean} */
checkLatexInstallation: () => true,
}

View file

@ -123,7 +123,7 @@ if sys.platform == 'linux':
setuptools.setup( setuptools.setup(
install_requires=([] if "FLATPAK_INSTALL" in os.environ else ["PySide6-Essentials"]), install_requires=([] if "FLATPAK_INSTALL" in os.environ else ["PySide6-Essentials"]),
python_requires='>=3.8', python_requires='>=3.9',
name='logarithmplotter', name='logarithmplotter',
version=pkg_version, version=pkg_version,