Go to file
dependabot[bot] d95d60f811
Bump exceptiongroup from 1.1.1 to 1.1.2 (#352)
Bumps [exceptiongroup](https://github.com/agronholm/exceptiongroup) from 1.1.1 to 1.1.2.
- [Changelog](https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst)
- [Commits](https://github.com/agronholm/exceptiongroup/compare/1.1.1...1.1.2)

---
updated-dependencies:
- dependency-name: exceptiongroup
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-03 13:35:58 -04:00
.github Bump github/codeql-action from 2.20.1 to 2.20.2 (#351) 2023-07-03 13:35:29 -04:00
docs Add version to title 2023-05-22 09:31:59 +02:00
generic Change logging to debug level 2023-05-11 20:55:54 -04:00
tests Add unit test for logging 2023-05-22 09:32:41 +02:00
.gitignore Update .gitignore 2022-03-18 22:17:44 +01:00
.pre-commit-config.yaml [pre-commit.ci] pre-commit autoupdate (#347) 2023-06-26 20:15:42 -04:00
.readthedocs.yml Update docs theme to Furo 2022-12-21 21:35:40 +01:00
CODE_OF_CONDUCT.md Update code of conduct to version 2 [skip-ci] 2020-08-26 22:17:34 -04:00
CONTRIBUTING.md Add code of conduct and contributing guide [skip-ci] 2020-08-26 22:12:54 -04:00
COPYRIGHT.txt Added Copyright and license info. 2010-08-23 21:07:22 +04:00
LICENSE.txt Update LICENSE to BSD 3-Clause 2023-06-24 19:43:21 -04:00
poetry.lock Bump exceptiongroup from 1.1.1 to 1.1.2 (#352) 2023-07-03 13:35:58 -04:00
pyproject.toml Bump pytest from 7.3.2 to 7.4.0 (#345) 2023-06-23 18:57:27 -04:00
README.md Update release in README 2022-11-20 14:37:07 -05:00
SECURITY.md Fix typo 2023-07-02 12:54:20 -04:00

Generic programming library for Python

Build state Maintainability Test Coverage Documentation Status Code style: black Gitter

Generic is a library for Generic programming, also known as Multiple dispatch.

The Generic library supports:

  • multi-dispatch: like functools.singledispatch, but for more than one parameter
  • multi-methods: multi-dispatch, but for methods
  • event dispatching: based on a hierarchical event structure (event objects)

You can read documentation hosted at excellent readthedocs.org project. Development takes place on github.

Changes

1.1.1

  • Add support for Python 3.11
  • Move mypy configuration to pyproject.toml
  • Enable automatic release of new versions with CI

1.1.0

  • Rename master branch to main
  • generic.event.Manager executes all handlers and throws an ExceptionGroup in case of errors

1.0.1

  • Add Support for Python 3.10, Drop Support for Python 3.7
  • Enable Pre-commit Hooks for isort, toml, yaml, pyupgrade, docformatter, and flake8
  • Migrate to GitHub Actions

1.0.0

  • Updated documentation on Readthedocs
  • Fix multimethod.otherwise clause

1.0.0b1

  • Ported the code to Python 3.7, Python 2 is no longer supported
  • Multimethods now have their own module
  • The interface now mimics functools.singledispatch:
    • the when method has been renamed to register
    • overriding of methods is no longer possible

0.3.1

  • Minor fixes in distribution.

0.3

  • Event management with event inheritance support.

0.2

  • Methods with multidispatch by object type and positional arguments.
  • Override multifunctions with override method.

0.1

  • Registry with simple and type axes.
  • Functions with multidispatch by positional arguments.