Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions autoconf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
import sys

if sys.version_info < (3, 12):
raise RuntimeError(
f"PyAutoConf requires Python 3.12 or later. "
f"You are running Python {sys.version_info.major}.{sys.version_info.minor}."
)

from . import jax_wrapper
from . import exc
from .tools.decorators import cached_property
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
keywords = ["cli"]
Expand All @@ -33,7 +33,7 @@ dependencies = [
]

[project.urls]
Homepage = "https://github.com/rhayes777/PyAutoConf"
Homepage = "https://github.com/PyAutoLabs/PyAutoConf"

[tool.setuptools]
include-package-data = true
Expand Down
Loading