Skip to content

Fix the pinned build-system version #1212

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ The released versions correspond to PyPI releases.
* fixed `fake_filesystem.add_package_metadata` that had never worked correctly
(see [#1205](../../issues/1205))

### Infrastructure
* updated the package build-system minimum version to setuptools v61.2 and higher

## [Version 5.9.2](https://pypi.python.org/pypi/pyfakefs/5.9.2) (2025-07-30)
Fixes interaction with pytest.

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[build-system]
requires = ["setuptools>=45"]
# change this to be "setuptools>=77.0.3" after 3.8 is out of support
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "pyfakefs"
description = "Implements a fake file system that mocks the Python file system modules."
readme = "README.md"
# change this to be PEP-639-conform after 3.8 is out of support
# change this to be "Apache-2.0" after 3.8 is out of support
license = {file = "COPYING"}

authors = [
Expand Down
Loading