Skip to content

Releases: mdmintz/pynose

1.5.5 - Python 3.14 compatibility

08 Sep 20:43
c01732f

Choose a tag to compare

Python 3.14 compatibility

What's Changed

Full Changelog: v1.5.4...v1.5.5

1.5.4 - A few updates

19 Feb 17:55

Choose a tag to compare

1.5.3 - Update line separator and build system

22 Sep 21:56
18b2dc7

Choose a tag to compare

1.5.2 - Update License

12 Jul 23:05

Choose a tag to compare

Update License

1.5.1 - Logging Optimizations

22 Mar 18:48
3c5da5c

Choose a tag to compare

1.5.0 - Code optimizations and refactoring

22 Feb 17:35

Choose a tag to compare

1.5.0 - Code optimizations and refactoring

  • Refactor and optimize code
  • Drop support for Python 3.6
  • Officially support Python 3.13

1.4.8 - Add options for capturing output

06 Aug 17:58
4bebb3c

Choose a tag to compare

Add options for capturing output

  • This resolves #11

To enable capture, set a Python env variable called "NOSE_CAPTURE" to "1".

It can be done like this in an __init__.py file:

import os
os.environ["NOSE_CAPTURE"] = "1"

This restores the default setting of nose, which is capturing output.
(Note that if output is captured, print() calls won't be seen.)

Capturing output can also be enabled with: --capture-output.

1.4.7 - Fix new flake8 issues

31 Jul 02:19
b55b7b6

Choose a tag to compare

1.4.6 - Fix DeprecationWarning

08 Jul 03:26
bf82868

Choose a tag to compare

Fix DeprecationWarning

1.4.5 - Fix issue with "inspect" on Python 3.11

24 May 22:11
721cbb8

Choose a tag to compare

Fix issue with "inspect" on Python 3.11

  • Fix issue with inspect on Python 3.11
    --> 0775045
    --> Fixes AttributeError: module 'inspect' has no attribute 'getargspec'.
    --> This resolves #4