Next | Query returned 18 messages, browsing 1 to 10 | Previous

History of commit frequency

CVS Commit History:


   2023-12-16 13:05:52 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-lazy-object-proxy: updated to 1.10.0

1.10.0 (2023-12-15)
-------------------

* Added Python 3.12 wheels.
* Dropped support for Python 3.7.
* Applied some reformatting and lint fixes using ruff to the codebase (mostly \ 
more Python 2 leftover cleanups).
   2023-01-05 11:35:25 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-lazy-object-proxy: updated to 1.9.0

1.9.0 (2023-01-04)
------------------
* Added support for matrix multiplication operator (``@``).
* Should have all the wheels now (including the manylinux ones).
* Bumped minimum version requirements for setuptools and setuptools-scm.
* Switched the default pure python fallback implementation to the \ 
"simple" one (when you ``from lazy_object_proxy import Proxy``
  and the C extension is not available).
  Previously the "slots" implementation was used but as it turns out \ 
it is slower on Python 3.
   2022-11-21 00:24:57 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-lazy-object-proxy: updated to 1.8.0

1.8.0 (2022-10-26)
------------------
* Cleaned up use of cPickle..
* Cleaned up more dead Python 2 code.
* Added Python 3.11 wheels.
* Dropped support for Python 3.6.
   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-12-19 14:28:46 by Thomas Klausner | Files touched by this commit (1)
Log message:
py-lazy-object-proxy: mark as not for python 2.7
   2021-12-15 21:09:40 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-lazy-object-proxy: updated to 1.7.1

1.7.1 (2021-12-15)
------------------
* Removed most of the Python 2 support code and fixed ``python_requires`` to \ 
require at least Python 3.6.

  Note that 1.7.0 has been yanked because it could not install on Python 2.7.
  Installing lazy-object-proxy on Python 2.7 should automatically fall back to \ 
the 1.6.0 release now.
   2021-12-15 10:37:36 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
py-lazy-object-proxy: updated to 1.7.0

1.7.0 (2021-12-15)
------------------

* Switched CI to GitHub Actions, this has a couple consequences:

  * Support for Python 2.7 is dropped. You can still install it there but it's \ 
not tested anymore and
    Python 2 specific handling will be removed at some point.
  * Linux wheels are now provided in `musllinux` and `manylinux2014` variants.

* Fixed ``__index__`` to fallback to ``int`` if the wrapped object doesn't have \ 
an ``__index__`` method.
  This prevents situations where code using a proxy would otherwise likely just \ 
call ``int`` had the object
  not have an ``__index__`` method.
   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-10 16:50:44 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
py-lazy-object-proxy: updated to 1.6.0

1.6.0 (2021-03-22)
------------------

* Added support for async special methods (``__aiter__``, ``__anext__``,
  ``__await__``, ``__aenter__``, ``__aexit__``).
  These are used in the ``async for``, ``await` and ``async with`` statements.

  Note that ``__await__`` returns a wrapper that tries to emulate the crazy
  stuff going on in the ceval loop, so there will be a small performance overhead.
* Added the ``__resolved__`` property. You can use it to check if the factory has
  been called.

Next | Query returned 18 messages, browsing 1 to 10 | Previous