diff --git a/doc/dependencies.csv b/doc/dependencies.csv index d630c1b4285453514668db546cbcd61d61e8a1e3..09b3f141c6a89ddaff1f8f4aaf24b723ab7f0faf 100644 --- a/doc/dependencies.csv +++ b/doc/dependencies.csv @@ -12,10 +12,10 @@ ARB_WITH_NEUROML,libxml2,,, ARB_WITH_MPI,MPI,,Many MPI implementations are supported., "ARB_WITH_MPI, ARB_WITH_PYTHON ",mpi4py,3.1.0,Minimum version depends on compatiblity with your Python and MPI versions. 3.1.0 is the first release to support Python > 3.8., html, .. literalinclude:: ../requirements.txt,,See ``doc/requirements.txt``, -unit,googletest,,source copy ``ext/gtest.*``, +unit,googletest,,submodule ``ext/gtest.*``, bench,Google-benchmark,,submodule ``ext/google-benchmark``, ---,json,,source copy ``ext/json``, ---,random123,,source copy ``ext/random123``, +--,json,,submodule ``ext/json``, +--,random123,,submodule ``ext/random123``, --,fmt,,submodule ``ext/fmt``, --,tinyopt,,source copy ``ext/tinyopt``, ARB_WITH_PYTHON,pybind11,,submodule ``ext/pybind11``, diff --git a/pyproject.toml b/pyproject.toml index cd9e92e2505ae3ccdf567ed011084b63c5dade1f..3c897394adc3dbc33c6b2d2263844a6b67c77536 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: C++" ] dependencies = [ @@ -28,7 +29,7 @@ dependencies = [ [tool.black] line-length = 88 -target-version = ['py37', 'py38', 'py39', 'py310'] +target-version = ['py37', 'py38', 'py39', 'py310', 'py311'] include = '\.pyi?$' extend-exclude='^/(ext|doc/scripts/.*_theme|doc/scripts/inputs.py)' @@ -50,7 +51,7 @@ requires = [ "setuptools", "wheel", "scikit-build", - "cmake>=3.18", + "cmake>=3.19", "ninja", ] build-backend = "setuptools.build_meta"