summaryrefslogtreecommitdiff
path: root/pyproject.toml
Commit message (Collapse)AuthorAgeFilesLines
* test: try to silence a new warningNed Batchelder2023-05-111-0/+1
| | | | | | | | | For example: ``` .tox/anypy/lib/python3.12/site-packages/_pytest/assertion/rewrite.py:1004: 50 warnings /Users/nedbatchelder/coverage/trunk/.tox/anypy/lib/python3.12/site-packages/_pytest/assertion/rewrite.py:1004: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead expl_format = self.pop_format_context(ast.Str(expl)) ```
* style: some clean-upsNed Batchelder2023-05-091-0/+3
|
* build: Migrate pytest configuration to pyproject.toml.neiljp (Neil Pilgrim)2023-03-201-0/+26
|
* build: use scriv to create GitHub releasesNed Batchelder2023-01-161-0/+8
|
* mypy: turn on disallow_untyped_decoratorsNed Batchelder2023-01-121-2/+1
|
* mypy: turn on disallow_untyped_callsNed Batchelder2023-01-121-1/+1
|
* mypy: all of coverage/ and tests/ are checkedNed Batchelder2023-01-121-0/+1
|
* mypy: exclude fullcoverage/encodings.pyNed Batchelder2023-01-101-0/+4
|
* 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.