2023-08-29 13:15:50 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-zconfig: updated to 4.0
4.0 (2023-05-05)
- Drop support for Python 2.7, 3.5, 3.6.
|
2023-06-18 14:00:13 by Adam Ciarcinski | Files touched by this commit (7) | |
Log message:
py-zope.testrunner: updated to 6.0; renamed from py-ZopeTestrunner
6.0 (2023-03-28)
- Drop support for Python 2.7, 3.5, 3.6.
5.6 (2022-12-09)
- Add support for Python 3.11.
- Inline a small part of ``random.Random.shuffle`` which was deprecated in
Python 3.9 and removed in 3.11
- Don't trigger post mortem debugger for skipped tests.
|
2023-01-02 13:05:42 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-zconfig: updated to 3.6.1
3.6.1 (2022-12-06)
==================
- Add support for Python 3.11.
- Drop support for Python 3.4.
|
2022-01-05 16:41:32 by Thomas Klausner | Files touched by this commit (289) |
Log message:
python: egg.mk: add USE_PKG_RESOURCES flag
This flag should be set for packages that import pkg_resources
and thus need setuptools after the build step.
Set this flag for packages that need it and bump PKGREVISION.
|
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2021-05-25 07:38:30 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-zconfig: updated to 3.6.0
3.6.0 (2021-05-19)
==================
- Added support for Python 3.8, 3.9 and 3.10. This primarily involves
avoiding the new-in-3.8 validation of the format string when using the
'safe-template' format style, since that's not supported in the Python
standard library.
- Added ``ZConfig.pygments`` module containing a lexer compatible with
the ``pygments`` library. Made discoverable via an entry point; use
**zconfig** as the highlight language for ``code-block`` directives in
Sphinx documents.
|
2019-08-13 12:55:19 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-zconfig: updated to 3.5.0
3.5.0:
- Add support for documenting schema files contained in packages to
the Sphinx extension.
|
2019-02-18 13:48:58 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-zconfig: updated to 3.4.0
3.4.0:
Many changes have been made in the support for logging configurations:
- The log handler section types defined by the
ZConfig.components.logger package support additional, optional
parameters:
style
Used to configure alternate format styles as found in the Python 3
standard library. Four style values are supported:
classic (the default), format (equivalent to style='{'
in Python 3), template (equivalent to style='$'), and
safe-template (similar to template, but using the
string.Template method safe_substitute method). A
best-effort implementation is provided for Python 2.
arbitrary-fields
A Boolean defauting to False for backward compatibility,
allows arbitrary replacement field names to be accepted in the
format string (regardless of the style setting). This
supports applications where log records are known to be generated
with additional string or numeric fields, at least for some
loggers. (An exception is still raised at format time if the
additional fields are not provided, unless the style value
safe-template is used.)
- The logfile section type defined by the ZConfig.components.logger
package supports the optional delay and encoding parameters.
These can only be used for regular files, not the special STDOUT
and STDERR streams.
- More validation on the parameters to the logfile and
email-notifier sections is performed early (at the construction of
the factory, rather than at creation of the logging handler).
This allows more checking of parameter combinations before any log
files are opened.
- The ZConfig.components.logger.handlers.log_format data type
function now supports formats that include numeric formatting for
levelno, and accept funcName as a valid log record field
(added in Python 2.6 and 3.1).
|