Skip to content

Releases: mdmintz/pynose

1.5.3 - Update line separator and build system

22 Sep 21:56
18b2dc7
Compare
Choose a tag to compare

1.5.2 - Update License

12 Jul 23:05
Compare
Choose a tag to compare

Update License

1.5.1 - Logging Optimizations

22 Mar 18:48
3c5da5c
Compare
Choose a tag to compare

1.5.0 - Code optimizations and refactoring

22 Feb 17:35
Compare
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
Compare
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
Compare
Choose a tag to compare

1.4.6 - Fix DeprecationWarning

08 Jul 03:26
bf82868
Compare
Choose a tag to compare

Fix DeprecationWarning

1.4.5 - Fix issue with "inspect" on Python 3.11

24 May 22:11
721cbb8
Compare
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

1.4.4 - Always print output of "print()" statements

03 May 01:47
e9fccf9
Compare
Choose a tag to compare

Always print the output of print() statements

  • Always print the output of print() statements (-s is always set now)
    --> a50362e
    --> This is the same as -s always being active.
    --> Personally, I've always wanted this, as it's needed for pdb debugging to work.

1.4.3 - Python 3.12 compatibility

02 May 01:58
6514ba8
Compare
Choose a tag to compare

Python 3.12 compatibility

  • Python 3.12 compatibility
    --> b524756
    --> Replace deprecated imp module with importlib
    --> This resolves #1