Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pytoolz/toolz
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.0
Choose a base ref
...
head repository: pytoolz/toolz
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 3 files changed
  • 3 contributors

Commits on Oct 8, 2024

  1. Declare support for Python 3.13

    Adds the PyPI trove classifier for Python 3.13.
    edgarrmondragon committed Oct 8, 2024
    Copy the full SHA
    6af7873 View commit details

Commits on Oct 10, 2024

  1. Declare support for Python 3.13

    Declare support for Python 3.13
    hendrikmakait authored Oct 10, 2024
    Copy the full SHA
    6cb5e6d View commit details

Commits on Jan 8, 2025

  1. Copy the full SHA
    08f2604 View commit details
Showing with 11 additions and 17 deletions.
  1. +9 −17 README.rst
  2. +1 −0 setup.py
  3. +1 −0 tox.ini
26 changes: 9 additions & 17 deletions README.rst
Original file line number Diff line number Diff line change
@@ -103,26 +103,18 @@ See Also
- `functools <https://docs.python.org/2/library/functools.html>`__: The
Python standard library for function tools

Contributions Welcome
---------------------
Project Status
--------------

``toolz`` aims to be a repository for utility functions, particularly
those that come from the functional programming and list processing
traditions. We welcome contributions that fall within this scope.
**This project is alive but inactive.**

We also try to keep the API small to keep ``toolz`` manageable. The ideal
contribution is significantly different from existing functions and has
precedent in a few other functional systems.
The original maintainers have mostly moved on to other endeavors. We're still
around for critical bug fixes, Python version bumps, and security issues and
will commit to keeping the project alive (it's highly depended upon).
However, beyond that we don't plan to spend much time reviewing contributions.
We view Toolz as mostly complete.

Please take a look at our
`issue page <https://github.com/pytoolz/toolz/issues>`__
for contribution ideas.

Community
---------

See our `mailing list <https://groups.google.com/forum/#!forum/pytoolz>`__.
We're friendly.
We encourage enthusiasts to innovate in new and wonderful places 🚀

.. |Build Status| image:: https://github.com/pytoolz/toolz/actions/workflows/test.yml/badge.svg?branch=master
:target: https://github.com/pytoolz/toolz/actions
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -33,5 +33,6 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"])
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ envlist =
py310
py311
py312
py313
pypy3

skip_missing_interpreters = true