| Age | Commit message (Collapse) | Author | Files | Lines |
|
Version 1.3.2
- Restore import-time initialization of macOS to avoid crash on thread+fork
|
|
Version 1.3.1
-------------
- Fixed segfault on macOS 12.5 in forked processes.
Note that, as a workaround, Activity Monitor will show the title of the
parent.
|
|
Version 1.3.0
- Added fallback no-op implementation if building the extension fails.
- Added support for displaying title as the process name in MacOS Activity
Monitor
- Fixed "Symbol not found: _Py_GetArgcArgv" error when using Xcode provided
Python
- Fixed FreeBSD support, broken in 1.2
- Added package type annotations
- Dropped support for Python 3.6.
|
|
Last minor update broke this without notice
|
|
Version 1.2.3
Added Python 3.10 packages.
Added Wheel packages for macOS.
Package build moved to cibuildwheel, other wheels provided
|
|
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
|
Version 1.2.2
-------------
- Fixed Windows build (issues #89, #90).
- Added wheel packages for Windows (issues #47, #90).
- Added wheel packages for aarch64 (issues #95).
|
|
Version 1.2.1
-------------
- Fixed segfault after ``os.environ.clear()`` (issue #88).
|
|
Version 1.2
~~~~~~~~~~~
- added ``getthreadtitle()`` and ``setthreadtitle()``.
- Initialisation of the module moved to the first usage: importing the module
doesn't cause side effects.
- Manage much longer command lines (#52)
- Improved build on BSD, dropped ancient versions (issue #67).
- Fixed build for Python 3.8 (#66, #72)
- Added support for Python 3.9
- Dropped support for Python < 3.6
|
|
|
|
Version 1.1.10
~~~~~~~~~~~~~~
- Fixed building with certain ``prctl.h`` implementations (issue #44).
- Use ``setuptools`` if available (issue #48).
|
|
Version 1.1.9
~~~~~~~~~~~~~
- Fixed build on VC (issues #20, #33).
- Added ``MANIFEST.in`` to the source distribution to help with RPM building
(issue #30).
|
|
The library allows a process to change its title (as displayed by
system tools such as ps and top).
Changing the title is mostly useful in multi-process systems, for
example when a master process is forked: changing the children's
title allows to identify the task each process is busy with. The
technique is used by PostgreSQL and the OpenSSH Server for example.
|