- update to 5.2.4:
* Fixes a rare problem on pytest shutdown. * Adds compatibility with PyPy 3.10 and Python 3.12. `fake_path.FakePathModule`, `fake_io.FakeIoModule` and - Update to version 5.0.0 - Update to version 4.7.0 - Update to version 3.5.2 - Added support for path-like objects as arguments in create_file(), - readline() did not work correctly in binary mode - several functions did not behave correctly for paths ending with a - Initial packaging of version 3.4.1 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyfakefs?expand=0&rev=42
This commit is contained in:
parent
89a75aac61
commit
5875baf218
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:05c52c6182cbc497ecfe684fbc2f656465c3e99da21fe675e891571450dec40f
|
|
||||||
size 219768
|
|
BIN
python-pyfakefs-5.2.4.tar.gz
(Stored with Git LFS)
Normal file
BIN
python-pyfakefs-5.2.4.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 7 11:35:15 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 5.2.4:
|
||||||
|
* Fixes a rare problem on pytest shutdown.
|
||||||
|
* Adds compatibility with PyPy 3.10 and Python 3.12.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 10 07:06:37 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Wed May 10 07:06:37 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
@ -22,7 +29,7 @@ Wed May 10 07:06:37 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
|||||||
or beta versions.
|
or beta versions.
|
||||||
* Fake module classes previously defined in `fake_filesystem`
|
* Fake module classes previously defined in `fake_filesystem`
|
||||||
have now moved to their own modules: `fake_os.FakeOsModule`,
|
have now moved to their own modules: `fake_os.FakeOsModule`,
|
||||||
`fake_path.FakePathModule`, `fake_io.FakeIoModule` and
|
`fake_path.FakePathModule`, `fake_io.FakeIoModule` and
|
||||||
`fake_open.FakeFileOpen`.
|
`fake_open.FakeFileOpen`.
|
||||||
* Patching of parsers for pandas >= 1.2 is removed since pandas
|
* Patching of parsers for pandas >= 1.2 is removed since pandas
|
||||||
now uses Python fs functions internally even when the engine
|
now uses Python fs functions internally even when the engine
|
||||||
@ -53,7 +60,7 @@ Thu Apr 13 22:43:38 UTC 2023 - Matej Cepl <mcepl@suse.com>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 28 20:07:05 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
Fri Oct 28 20:07:05 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||||
|
|
||||||
- Update to version 5.0.0
|
- Update to version 5.0.0
|
||||||
New version after the transfer to pytest-dev.
|
New version after the transfer to pytest-dev.
|
||||||
Changes
|
Changes
|
||||||
* the old-style API deprecated since version 3.4 has now been removed
|
* the old-style API deprecated since version 3.4 has now been removed
|
||||||
@ -72,7 +79,7 @@ Fri Oct 28 20:07:05 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 12 14:10:11 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
Wed Oct 12 14:10:11 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||||
|
|
||||||
- Update to version 4.7.0
|
- Update to version 4.7.0
|
||||||
Changes
|
Changes
|
||||||
fs fixtures cannot be nested; any nested fs fixture
|
fs fixtures cannot be nested; any nested fs fixture
|
||||||
(for example inside an fs_session or fs_module fixture) will just reference the outer fixture (the behavior had been unexpected before)
|
(for example inside an fs_session or fs_module fixture) will just reference the outer fixture (the behavior had been unexpected before)
|
||||||
@ -267,7 +274,7 @@ Thu Nov 22 19:40:46 UTC 2018 - Karol Babioch <kbabioch@suse.de>
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 12 09:07:49 UTC 2018 - Karol Babioch <kbabioch@suse.com>
|
Mon Nov 12 09:07:49 UTC 2018 - Karol Babioch <kbabioch@suse.com>
|
||||||
|
|
||||||
- Update to version 3.5.2
|
- Update to version 3.5.2
|
||||||
* This is mostly a bug-fix release.
|
* This is mostly a bug-fix release.
|
||||||
* added support for pause/resume of patching the file system modules
|
* added support for pause/resume of patching the file system modules
|
||||||
* allow to set current group ID, set current user ID and group ID as `st_uid`
|
* allow to set current group ID, set current user ID and group ID as `st_uid`
|
||||||
@ -303,19 +310,19 @@ Tue Oct 23 06:39:22 UTC 2018 - Karol Babioch <kbabioch@suse.com>
|
|||||||
Thu Jun 14 05:05:28 UTC 2018 - kbabioch@suse.com
|
Thu Jun 14 05:05:28 UTC 2018 - kbabioch@suse.com
|
||||||
|
|
||||||
- Update to version 3.4.3
|
- Update to version 3.4.3
|
||||||
- Added support for path-like objects as arguments in create_file(),
|
- Added support for path-like objects as arguments in create_file(),
|
||||||
create_dir(), create_symlink(), add_real_file() and add_real_directory()
|
create_dir(), create_symlink(), add_real_file() and add_real_directory()
|
||||||
- Bugfixes:
|
- Bugfixes:
|
||||||
- tell after seek gave incorrect result in append mode
|
- tell after seek gave incorrect result in append mode
|
||||||
- flushing file contents after truncate was incorrect under some conditions
|
- flushing file contents after truncate was incorrect under some conditions
|
||||||
- readline() did not work correctly in binary mode
|
- readline() did not work correctly in binary mode
|
||||||
- pathlib.Path.resolve() behaved incorrectly if the path does not exist
|
- pathlib.Path.resolve() behaved incorrectly if the path does not exist
|
||||||
- closed attribute was not implemented in fake file
|
- closed attribute was not implemented in fake file
|
||||||
- add_real_directory did not behave correctly for nested paths
|
- add_real_directory did not behave correctly for nested paths
|
||||||
- several functions did not behave correctly for paths ending with a
|
- several functions did not behave correctly for paths ending with a
|
||||||
path separator
|
path separator
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 17 11:42:01 UTC 2018 - kbabioch@suse.com
|
Tue Apr 17 11:42:01 UTC 2018 - kbabioch@suse.com
|
||||||
|
|
||||||
- Initial packaging of version 3.4.1
|
- Initial packaging of version 3.4.1
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
%endif
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-pyfakefs%{psuffix}
|
Name: python-pyfakefs%{psuffix}
|
||||||
Version: 5.2.2
|
Version: 5.2.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Fake file system that mocks the Python file system modules
|
Summary: Fake file system that mocks the Python file system modules
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user