Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-03-10 | setuptools: move stuff to declarative cfg if possible [skip ci] | Eli Schwartz | 1 | -1/+11 | |
We're down to just declaring the data files in python now. setup.cfg can, uniquely, retrieve version info by trying to parse the AST for simple assignments (which we use) instead of importing the entire module. | |||||
2020-11-20 | setup.cfg: fix python requires to be 3.6.0 | Dylan Baker | 1 | -1/+1 | |
2020-10-30 | setup.cfg: Add pytest discovery args | Dylan Baker | 1 | -0/+3 | |
We have a single giant file for our tests, but a number of files that match pytest's default discovery globs. To fix that, let's tell pytest what to do. This means you can just `pytest` and get the right results. It also helps IDE's like vscode correctly identify tests. | |||||
2020-04-21 | setup.cfg: Mark setuptools as required | Dylan Baker | 1 | -0/+2 | |
It's required, lets just document it as such. | |||||
2019-12-05 | pytest: Fix test warnings | Daniel Mensinger | 1 | -1/+4 | |
2019-11-02 | Ensure setuptools via PEP508/518 pyproject.toml | Michael Hirsch, Ph.D | 1 | -0/+4 | |
2019-07-11 | Remove unnecessary setup.cfg lines that confound offline use | Michael Hirsch, Ph.D | 1 | -3/+0 | |
2019-07-11 | minimum python 3.5.2 | Michael Hirsch, Ph.D | 1 | -1/+1 | |
2019-07-11 | ENH: metadata PEP390 setup.cfg | Michael Hirsch, Ph.D | 1 | -33/+35 | |
https for Meson docs url Co-Authored-By: Elliott Sales de Andrade <quantum.analyst@gmail.com> | |||||
2019-04-29 | Fix builtin variable names | Daniel Mensinger | 1 | -0/+2 | |
2018-12-02 | flake8: ignore W504: line break after binary operator | Xavier Claessens | 1 | -0/+2 | |
It wasn't an error before, and plenty of files does that. | |||||
2018-07-02 | setup.cfg: Don't warn about commented code | Nirbheek Chauhan | 1 | -0/+2 | |
2018-06-06 | Fix issues found by flake8 | Xavier Claessens | 1 | -0/+4 | |
2017-09-21 | flake8: disable E731: do not assign a lambda expression, use a def | Luke Shumaker | 1 | -3/+5 | |
It has too many false positives. It was complaining about things like if this: fn = some_func else: fn = lambda x: ... Where obviously, "fn" can't be a def, and it would be silly to introduce some other name to use as the def, just to assign it to fn. | |||||
2017-01-28 | vs: Use CompilerArgs() for compile and link args | Nirbheek Chauhan | 1 | -1/+3 | |
At the same time also fix the order in which they are added. They now match the order used in the Ninja backend. | |||||
2017-01-28 | Disable E266 in flake8 | Nirbheek Chauhan | 1 | -1/+3 | |
Don't tell me how to format my comments! | |||||
2017-01-11 | style: disable flake8 warnings E241, E251, E305, E401 | Mike Sinkovsky | 1 | -1/+9 | |
2016-12-29 | setup.cfg: fix syntax | Igor Gnatenko | 1 | -2/+2 | |
2016-12-28 | Just say no. | Jussi Pakkanen | 1 | -0/+2 | |
2016-12-23 | setup.cfg: ignore couple of PEP8 errors | Igor Gnatenko | 1 | -1/+6 | |
We don't care about E261 and temporarily ignore E501. Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> | |||||
2016-12-21 | Shut down the noise. | Jussi Pakkanen | 1 | -1/+1 | |
2016-12-21 | add flake8 configuration | Igor Gnatenko | 1 | -0/+2 | |
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com> |