summaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
...
* MemoryLeakTest class enhancements (#1731)Giampaolo Rodola2020-04-231-0/+4
|
* Git hook for renamed/added/deleted files + flake8 print() + tidelift (#1704)Giampaolo Rodola2020-02-211-6/+11
|
* Add C linter script (#1698)Giampaolo Rodola2020-02-181-3/+10
|
* fix Makefile for freebsdGiampaolo Rodola2020-02-181-9/+7
|
* get rid of pip_install() code for py2; move everything in runner.pyGiampaolo Rodola2020-02-151-2/+2
|
* refactor print colors utilsGiampaolo Rodola2020-02-151-7/+11
|
* #1659: provide error message in case of bugged PYPY2 versionGiampaolo Rodola2020-02-141-1/+1
|
* refactor docGiampaolo Rodola2020-02-121-1/+1
|
* Properly handle PID type in C (#1672)Giampaolo Rodola2020-01-291-1/+0
|
* properly cleanup C threadGiampaolo Rodola2020-01-141-2/+2
|
* exec make install before 2 targetsGiampaolo Rodola2020-01-141-0/+2
|
* Don't pollute tree with temporary configure test files (#1597)Anthony Ramine2019-09-301-4/+1
| | | | | | | | | | | | | | | The docs for CCompiler.compile say: > If output_dir is given, object files will be put under it, while retaining their > original path component. That is, foo/bar.c normally compiles to foo/bar.o (for a > Unix implementation); if output_dir is build, then it would compile to build/foo/bar.o. What they forget to say is that path components are also retained if output_dir is not specified, it just means it will do so in the current directory. So if you compile a temporary C file /tmp/foo.c, it will produce a ./tmp/foo.o file relative to the current directory. This commit fixes that issue by passing an explicit output_dir itself located in a temporary directory.
* fix #1578: 'perf' lib was renamed to 'pyperf'Giampaolo Rodola2019-09-181-1/+1
|
* add script to help fix flake8 issuesGiampaolo Rodola2019-06-291-0/+3
|
* use SO_REUSEADDR on UNIX onlyGiampaolo Rodola2019-06-261-0/+1
|
* fix FreeBSD testsGiampaolo Rodola2019-06-141-1/+1
|
* fix various testsGiampaolo Rodola2019-06-141-1/+1
|
* add pip install --trusted-host optGiampaolo Rodola2019-06-131-2/+2
|
* fix #1478: add make command to re-run tests failed on last runGiampaolo Rodola2019-04-051-0/+5
|
* Coloured tests (#1459)Giampaolo Rodola2019-03-131-2/+2
| | | Fixes #1458.
* update doc + change git hook locationGiampaolo Rodola2019-03-021-1/+1
|
* make pre-release checks/install src dist in a venvGiampaolo Rodola2019-03-011-10/+7
|
* add new make command to check tar.gz sanityGiampaolo Rodola2019-03-011-1/+9
|
* fix #1442: use python3 as Makefile defaultGiampaolo Rodola2019-02-271-14/+5
|
* add arg parser for ad scriptGiampaolo Rodola2019-02-271-1/+1
|
* add script for to benchmark API callsGiampaolo Rodola2019-02-271-3/+5
|
* move access_denied scriptGiampaolo Rodola2019-02-271-9/+13
|
* Process SE DEBUG mode was not set on Windows (#1429)Giampaolo Rodola2019-02-251-0/+4
|
* Correct capitalization of PyPI (#1337)Jon Dufresne2018-09-261-2/+2
| | | As spelled on https://pypi.org/.
* revert file renaming of macos files; get them back to 'osx' prefixGiampaolo Rodola2018-06-291-1/+1
|
* Rename OSX to macOS (#1298)Giampaolo Rodola2018-06-261-1/+1
| | | rename OSX to macOS
* #1273 net_if_addr() namedtuple name has been renamed from "snic" to "snicaddr".Giampaolo Rodola2018-05-041-1/+1
|
* #1270: migrate URLs to new pypi siteGiampaolo Rodola2018-04-251-1/+1
|
* fix git commit hook cmd on winGiampaolo Rodola2018-03-241-1/+1
|
* add a script to purge installationGiampaolo Rodola2018-03-171-1/+2
|
* Revert "Move tests out of package to top level directory (#1232)" (#1242)Giampaolo Rodola2018-03-111-11/+11
| | | This reverts commit b578d2febfd35f80fcfa1ce1bdf18d44d21b1581.
* Move tests out of package to top level directory (#1232)Jon Dufresne2018-03-091-11/+11
| | | | | | | | Cleanly separates tests from the package itself. Prevents the tests being installed to site-packages. Tests are still distributed with the source distribution by MANIFEST.in. Avoids installing tests in production environments, leading to less total code in the environment.
* pre releaserelease-5.4.3Giampaolo Rodola2018-01-011-0/+1
|
* pre releaseGiampaolo Rodola2018-01-011-1/+0
|
* pre releaseGiampaolo Rodola2018-01-011-1/+1
|
* pre-releaseGiampaolo Rodola2018-01-011-4/+4
|
* pre releaserelease-5.4.2Giampaolo Rodola2017-12-071-3/+3
|
* pre-release; also get rid of PSUTIL_DEBUG doc instructions (it's kinda ↵Giampaolo Rodola2017-12-071-8/+8
| | | | useless for the user after all)
* 1173 debug mode (#1176)Giampaolo Rodola2017-11-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | * implement PSUTIL_DEBUG from C module * update doc * add psutil_debug() utility function * update doc * enable PSUTIL_DEBUG for tests * update appveyor.yml * change psutil_debug() signature so that it can accept variable num of args * provide DEBUG info in psutil_raise_for_pid() * properly print debug message * do not print too much
* upgrade dist cmdsGiampaolo Rodola2017-11-111-9/+19
|
* change make cmdsGiampaolo Rodola2017-11-111-6/+6
|
* try to set PSUTIL_TESTING env var from python before failingGiampaolo Rodola2017-11-111-17/+18
|
* #1167 give CREDITS to @matrayGiampaolo Rodola2017-11-081-2/+1
|
* provide a 'make help' commandGiampaolo Rodola2017-11-061-75/+41
|
* update MakefileGiampaolo Rodola2017-11-031-18/+10
|