summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
AgeCommit message (Collapse)Author
2023-09-14allow msgpack 1.0.6 (which has py312 wheels), fixes #7810Thomas Waldmann
2023-09-14allow msgpack 1.0.6(rc1)Thomas Waldmann
2023-09-14add wheel to build-system requirementsThomas Waldmann
2023-09-14support / test on Python 3.12Thomas Waldmann
2023-09-05pyproject.toml: move project metadataThomas Waldmann
2023-09-04pyproject.toml: move mypy optionsThomas Waldmann
2023-09-04pyproject.toml: move pytest optionsThomas Waldmann
2023-09-04replace flake8 by ruffThomas Waldmann
2022-09-17do not use version_tuple placeholder in setuptools_scm templateThomas Waldmann
that would require setuptools_scm>=5.0.0 but some dists do not have that yet. also, we do not use the version_tuple from _version.py, so it is not required anyway. forward port of #7024.
2022-08-06_version.py: remove trailing blank, add LF at EOFThomas Waldmann
2022-07-23Merge branch 'master' into borg2Thomas Waldmann
2022-07-18 Fix pyproject.toml to create a fixed _version.py file, compatible with both ↵Gianfranco Costamagna
old and new setuptools_scm version (see: #6875)
2022-07-06black integrationAndrey Bienkowski
2022-04-07relax Cython requirementThomas Waldmann
0.27 was broken, but it will install the latest release anyway now.
2022-04-07require/configure setuptools_scm via pyproject.tomlThomas Waldmann
2022-02-25pyproject.toml: running setup.py also requires CythonAndrey Bienkowski
2022-02-25Add pkgconfig build requirementAndrey Bienkowski
setup_crypto.crypto_ext_kwargs needs pkgconfig to find OpenSSL
2022-02-25Add pyproject.tomlAndrey Bienkowski
This blocks #6264 because black configuration is stored in pyproject.toml. See <https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-format> I copied this from <https://setuptools.pypa.io/en/latest/userguide/quickstart.html#basic-use>