@@ -217,8 +217,8 @@ def finalize_options(self):
217217 pass
218218
219219 def run (self ):
220- if sys .version_info < (3 , 6 ):
221- raise ImportError ("Code generation must be executed with Python >= 3.6 " )
220+ if sys .version_info < (3 , 8 ):
221+ raise ImportError ("Code generation must be executed with Python >= 3.8 " )
222222
223223 from codegen import perform_codegen
224224
@@ -506,16 +506,15 @@ def run(self):
506506 long_description_content_type = "text/markdown" ,
507507 classifiers = [
508508 "Development Status :: 5 - Production/Stable" ,
509- "Programming Language :: Python :: 3.6" ,
510- "Programming Language :: Python :: 3.7" ,
511509 "Programming Language :: Python :: 3.8" ,
512510 "Programming Language :: Python :: 3.9" ,
513511 "Programming Language :: Python :: 3.10" ,
514512 "Programming Language :: Python :: 3.11" ,
513+ "Programming Language :: Python :: 3.12" ,
515514 "Topic :: Scientific/Engineering :: Visualization" ,
516515 "License :: OSI Approved :: MIT License" ,
517516 ],
518- python_requires = ">=3.6 " ,
517+ python_requires = ">=3.8 " ,
519518 license = "MIT" ,
520519 packages = [
521520 "jupyterlab_plotly" ,
0 commit comments