File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import sys
2+
3+ if sys .version_info < (3 , 12 ):
4+ raise RuntimeError (
5+ f"PyAutoConf requires Python 3.12 or later. "
6+ f"You are running Python { sys .version_info .major } .{ sys .version_info .minor } ."
7+ )
8+
19from . import jax_wrapper
210from . import exc
311from .tools .decorators import cached_property
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ classifiers = [
1818 " Topic :: Scientific/Engineering :: Physics" ,
1919 " Natural Language :: English" ,
2020 " Operating System :: OS Independent" ,
21- " Programming Language :: Python :: 3.12" ,
21+ " Programming Language :: Python :: 3.12" ,
2222 " Programming Language :: Python :: 3.13"
2323]
2424keywords = [" cli" ]
@@ -33,7 +33,7 @@ dependencies = [
3333]
3434
3535[project .urls ]
36- Homepage = " https://github.com/rhayes777 /PyAutoConf"
36+ Homepage = " https://github.com/PyAutoLabs /PyAutoConf"
3737
3838[tool .setuptools ]
3939include-package-data = true
You can’t perform that action at this time.
0 commit comments