Releases: mdmintz/pynose
Releases · mdmintz/pynose
1.5.5 - Python 3.14 compatibility
Python 3.14 compatibility
- Add support for Python 3.14
--> This resolves #44
What's Changed
Full Changelog: v1.5.4...v1.5.5
1.5.4 - A few updates
1.5.3 - Update line separator and build system
Update line separator and build system
- Update the line separator during test results
--> This resolves #40 - Switch to a pyproject.toml build system
--> This resolves #41
1.5.2 - Update License
Update License
1.5.1 - Logging Optimizations
Logging Optimizations
- Add options for customizing the logging experience
--> This resolves #23
1.5.0 - Code optimizations and refactoring
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
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
Fix new flake8 issues
1.4.6 - Fix DeprecationWarning
Fix DeprecationWarning
- Fix DeprecationWarning
- This resolves #7 (
"DeprecationWarning: pkg_resources is deprecated as an API.")