2023-01-11 12:48:35 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-cssselect: updated to 1.2.0
Version 1.2.0
-------------
* Drop support for Python 2.7, 3.4-3.6, add support for Python 3.7-3.11.
* Add type annotations (PEP 484 and PEP 561).
* More features from the CSS Selectors Level 4:
* The ``:is()`` pseudo-class.
* The ``:where()`` pseudo-class.
* The ``:has()`` pseudo-class, with some limitations.
* Fix parsing ``:scope`` after a comma.
* Add parentheses to fix condition precedence in some cases.
* Private API changes related to the removal of the Python 2 support:
* Remove ``_unicode`` and ``_unichr`` aliases from ``csselect.parser``.
* Remove ``_basestring`` and ``_unicode`` aliases from ``csselect.xpath``.
* Deprecate ``csselect.xpath._unicode_safe_getattr()`` and change it to just
call ``getattr()``.
* Include tests in the PyPI tarball.
* Many CI additions and improvements.
* Improve the test coverage.
|
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 13:23:42 by Nia Alarie | Files touched by this commit (1161) |
Log message:
textproc: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Unfetchable distfiles (fetched conditionally?):
./textproc/convertlit/distinfo clit18src.zip
|
2021-10-07 17:02:49 by Nia Alarie | Files touched by this commit (1162) |
Log message:
textproc: Remove SHA1 hashes for distfiles
|
2019-08-12 22:00:45 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cssselect: updated to 1.1.0
Version 1.1.0
* Support for the :scope selector, which allows to access immediate
children of a selector.
* Support for the |E syntax for type selectors without a namespace.
* A new selector method, canonical, returns the CSS expression of the
selector, as a string.
|
2018-01-01 22:28:59 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-cssselect: updated to 1.0.3
Version 1.0.3
* Fix artifact uploads to pypi
Version 1.0.2
* Drop support for Python 2.6 and Python 3.3.
* Fix deprecation warning in Python 3.6.
* Minor cleanups.
|
2017-02-13 18:58:47 by Adam Ciarcinski | Files touched by this commit (3) |
Log message:
Version 1.0.1
* Add support for Python 3.6.
* Documentation hosted `on Read the Docs <https://cssselect.readthedocs.io/>`_
|
2016-06-08 19:43:49 by Thomas Klausner | Files touched by this commit (356) |
Log message:
Switch to MASTER_SITES_PYPI.
|
2015-11-04 03:00:17 by Alistair G. Crooks | Files touched by this commit (797) |
Log message:
Add SHA512 digests for distfiles for textproc category
Problems found locating distfiles:
Package cabocha: missing distfile cabocha-0.68.tar.bz2
Package convertlit: missing distfile clit18src.zip
Package php-enchant: missing distfile php-enchant/enchant-1.1.0.tgz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
|
2014-04-11 19:58:35 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Update to 0.9.1:
Version 0.9.1
-------------
Released on 2013-10-17.
* **Backward incompatible change from 0.9**:
:meth:`~GenericTranslator.selector_to_xpath` defaults to
ignoring pseudo-elements,
as it did in 0.8 and previous versions.
(:meth:`~GenericTranslator.css_to_xpath` doesnât change.)
* Drop official support for Python 2.4 and 3.1,
as testing was becoming difficult.
Nothing will break overnight,
but future releases may on may not work on these versions.
Older releases will remain available on PyPI.
Version 0.9
-----------
Released on 2013-10-11.
Add parser support for :attr:`functional
pseudo-elements <Selector.pseudo_element>`.
*Update:*
This version accidentally introduced a **backward incompatible** change:
:meth:`~GenericTranslator.selector_to_xpath` defaults to
rejecting pseudo-elements instead of ignoring them.
Version 0.8
-----------
Released on 2013-03-15.
Improvements:
* `#22 <https://github.com/SimonSapin/cssselect/issues/22>`_
Let extended translators override what XPathExpr class is used
* `#19 <https://github.com/SimonSapin/cssselect/issues/19>`_
Use the built-in ``lang()`` XPath function
for implementing the ``:lang()`` pseudo-class
with XML documents.
This is probably faster than ``ancestor-or-self::``.
Bug fixes:
* `#14 <https://github.com/SimonSapin/cssselect/issues/14>`_
Fix non-ASCII pseudo-classes. (Invalid selector instead of crash.)
* `#20 <https://github.com/SimonSapin/cssselect/issues/20>`_
As per the spec, elements containing only whitespace are not considered empty
for the ``:empty`` pseudo-class.
Version 0.7.1
-------------
Released on 2012-06-14. Code name *remember-to-test-with-tox*.
0.7 broke the parser in Python 2.4 and 2.5; the tests in 2.x.
Now all is well again.
Also, pseudo-elements are now correctly made lower-case. (They are supposed
to be case-insensitive.)
|