File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
pyfakefs/pytest_session_tests Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ The released versions correspond to PyPI releases.
1717
1818### Fixes
1919* fixed handling of added `strict` argument in Python 3.9.23
20+ * make sure test files are packaged (see [#1186](../../issues/1186))
2021
2122## [Version 5.9.0](https://pypi.python.org/pypi/pyfakefs/5.8.0) (2025-06-21)
2223Adds support for an API change in latest Python patch releases.
@@ -25,7 +26,7 @@ Adds support for an API change in latest Python patch releases.
2526* the message from an `OSError` raised in the fake filesystem has no longer the postfix
2627 _"in the fake filesystem"_ (see [#1159](../../discussions/1159))
2728* changed implementation of `FakeShutilModule` to prepare it for usage without the patcher
28- (see [#1171](../../discussions /1171))
29+ (see [#1171](../../issues /1171))
2930
3031### Enhancements
3132* added convenience function `add_package_metadata` to add the metadata of a given
Original file line number Diff line number Diff line change @@ -79,9 +79,11 @@ xdist = [
7979]
8080
8181[tool .setuptools ]
82- packages = [" pyfakefs" ]
82+ include-package-data = true
83+
8384[tool .setuptools .package-data ]
84- pyfakefs = [" py.typed" ]
85+ where = [" pyfakefs" ]
86+ pyfakefs = [" py.typed" , " **/*.parquet" , " **/*.xlsx" ]
8587
8688[tool .setuptools .dynamic ]
8789version = { attr = " pyfakefs.__version__" }
You can’t perform that action at this time.
0 commit comments