Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

pytest-memray

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pytest-memray - pypi Package Compare versions

Comparing version
1.7.0
to
1.8.0
+1
-0
docs/conf.py
"""Sphinx configuration file for pytest-memray documentation."""
from __future__ import annotations

@@ -3,0 +4,0 @@

@@ -8,2 +8,9 @@ Release History

v1.8.0 (2025-08-13)
-------------------
Features - 1.8.0
~~~~~~~~~~~~~~~~
- Python 3.14 is now officially supported. (:issue:`118`)
v1.7.0 (2024-07-25)

@@ -10,0 +17,0 @@ -------------------

+1
-1

@@ -50,3 +50,3 @@ PYTHON ?= python

$(PYTHON) -m black --check --diff $(python_files)
$(PYTHON) -m mypy src/pytest_memray --ignore-missing-imports
$(PYTHON) -m mypy src/pytest_memray

@@ -53,0 +53,0 @@ .PHONY: docs

@@ -1,4 +0,4 @@

Metadata-Version: 2.3
Metadata-Version: 2.4
Name: pytest-memray
Version: 1.7.0
Version: 1.8.0
Summary: A simple plugin to use with pytest

@@ -19,2 +19,5 @@ Project-URL: Bug Tracker, https://github.com/bloomberg/pytest-memray/issues

Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython

@@ -33,6 +36,6 @@ Classifier: Topic :: Software Development :: Debuggers

Provides-Extra: lint
Requires-Dist: black==22.12; extra == 'lint'
Requires-Dist: isort==5.11.4; extra == 'lint'
Requires-Dist: mypy==0.991; extra == 'lint'
Requires-Dist: ruff==0.0.272; extra == 'lint'
Requires-Dist: black==25.1.0; extra == 'lint'
Requires-Dist: isort==6.0.1; extra == 'lint'
Requires-Dist: mypy==1.17.1; extra == 'lint'
Requires-Dist: ruff==0.12.7; extra == 'lint'
Provides-Extra: test

@@ -39,0 +42,0 @@ Requires-Dist: anyio>=4.4.0; extra == 'test'

@@ -34,6 +34,6 @@ [build-system]

optional-dependencies.lint = [
"black==22.12",
"ruff==0.0.272",
"isort==5.11.4",
"mypy==0.991",
"black==25.1.0",
"ruff==0.12.7",
"isort==6.0.1",
"mypy==1.17.1",
]

@@ -57,2 +57,5 @@ optional-dependencies.test = [

"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",

@@ -122,4 +125,6 @@ "Topic :: Software Development :: Debuggers",

[tool.ruff]
line-length = 95
[tool.ruff.lint]
ignore = ['E501']
line-length = 95
select = [

@@ -126,0 +131,0 @@ 'E',

@@ -1,1 +0,1 @@

__version__ = "1.7.0"
__version__ = "1.8.0"

@@ -59,4 +59,3 @@ from __future__ import annotations

**kwargs: Any,
) -> SectionMetadata | None:
...
) -> SectionMetadata | None: ...

@@ -147,3 +146,3 @@

@hookimpl(hookwrapper=True)
def pytest_pyfunc_call(self, pyfuncitem: Function) -> object | None:
def pytest_pyfunc_call(self, pyfuncitem: Function) -> Iterable[None]:
func = pyfuncitem.obj

@@ -150,0 +149,0 @@