summaryrefslogtreecommitdiff
path: root/pyproject.toml
Commit message (Collapse)AuthorAgeFilesLines
* mypy: a separate tox env for mypyNed Batchelder2022-12-291-20/+11
|
* test: add type annotations for files.pyNed Batchelder2022-12-271-2/+2
|
* test: add mypy just for one file at firstNed Batchelder2022-12-271-0/+28
|
* build: remove redundant wheel dep from pyproject.tomlMichał Górny2022-10-011-1/+1
| | | | | | | Remove the redundant `wheel` dependency, as it is added by the backend automatically. Listing it explicitly in the documentation was a historical mistake and has been fixed since, see: https://github.com/pypa/setuptools/commit/f7d30a9529378cf69054b5176249e5457aaf640a
* build: use pyproject.toml to comply with pep517Ned Batchelder2022-09-131-0/+6
Also: remove --no-index for installing ourselves. PEP-517 compliance means we need to use PyPI to get setuptools, so we can't use --no-index anymore. I think this was added just to speed up the initial installation of the virtualenv used in these tests.