Bumping required Python version to v3.9 + adding new Polyfills for IDEs.
This commit is contained in:
parent
ab45109206
commit
78d7e6f310
2 changed files with 6 additions and 2 deletions
|
@ -67,4 +67,8 @@ const Helper = {
|
|||
const Latex = {
|
||||
/** @type {function(string, number, string): string} */
|
||||
render: (latex_markup, font_size, color) => '',
|
||||
}
|
||||
/** @type {function(string, number, string): string} */
|
||||
findPrerendered: (latex_markup, font_size, color) => '',
|
||||
/** @type {function(): boolean} */
|
||||
checkLatexInstallation: () => true,
|
||||
}
|
||||
|
|
2
setup.py
2
setup.py
|
@ -123,7 +123,7 @@ if sys.platform == 'linux':
|
|||
|
||||
setuptools.setup(
|
||||
install_requires=([] if "FLATPAK_INSTALL" in os.environ else ["PySide6-Essentials"]),
|
||||
python_requires='>=3.8',
|
||||
python_requires='>=3.9',
|
||||
|
||||
name='logarithmplotter',
|
||||
version=pkg_version,
|
||||
|
|
Loading…
Reference in a new issue