Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Releases: balabit/typesafety

Fix typing module issues

06 Mar 16:30
452242d
Compare
Choose a tag to compare

The typing module is not yet stable (it was included provisionally) and typing_inspect does not work for certain versions that are still used by some Linux distributions (i.e. Ubuntu Xenial uses 3.5.2 instead of 3.5.3, where typing_inspect works differently). We need to take those somewhat into account.

Setup.py fix

06 Mar 09:08
162acec
Compare
Choose a tag to compare

In setup.py, the requires argument was replaced with install_requires because dependencies weren't automatically installed.

Partial PEP-484 support

02 Mar 14:04
fcc05a8
Compare
Choose a tag to compare

The typing.Union, typing.Optional and typing.Callable annotations were implemented to replace the tuple notation and the use of the callable method as annotations. Those are deprecated and will be removed from a future release.

Version support changes

02 Mar 11:48
9e9a458
Compare
Choose a tag to compare

Dropping unsupported Python versions 3.2 and 3.3 and introduce support for version 3.6.

Import fix

27 May 08:42
Compare
Choose a tag to compare

See issue #13

Pytest support

18 Mar 16:56
Compare
Choose a tag to compare
  • @nicoddemus added support for py.test.
  • Minor cleanups in the testing infrastructure (removed Makefile, rely solely on tox, etc.)
  • Long description was fixed in setup.py

Initial release

18 Mar 16:57
Compare
Choose a tag to compare

Initial release in which we moved the codebase from the internal repository over to github.