- Update to 3.6:

* fixed incorrect argument names for some os functions
  * fake DirEntry now implements os.PathLike in Python >= 3.6 (see #483)
  * fixed incorrect argument name for os.makedirs (see #481)
  * avoid pytest warning under Python 2.7 (see #466)
  * add next to FakeFileWrapper (see #485)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyfakefs?expand=0&rev=21
This commit is contained in:
Tomáš Chvátal 2019-10-07 08:56:22 +00:00 committed by Git OBS Bridge
parent 803d2fdf4d
commit 1613009ca8
4 changed files with 15 additions and 5 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:733d89f79b642ca4cb535ef5d64fb69a3ad2edbe27445553545e4c3fc227d285
size 171519

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cb4664652c973a4c0b9fde9d598c65dfe01d9f6f0cf2e7b269c0811b33be2f00
size 175400

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon Oct 7 08:49:15 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 3.6:
* fixed incorrect argument names for some os functions
* fake DirEntry now implements os.PathLike in Python >= 3.6 (see #483)
* fixed incorrect argument name for os.makedirs (see #481)
* avoid pytest warning under Python 2.7 (see #466)
* add next to FakeFileWrapper (see #485)
-------------------------------------------------------------------
Fri Mar 22 14:28:34 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -18,12 +18,12 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pyfakefs
Version: 3.5.8
Version: 3.6
Release: 0
Summary: Fake file system that mocks the Python file system modules
License: Apache-2.0
Group: Development/Languages/Python
URL: http://pyfakefs.org
URL: https://github.com/jmcgeheeiv/pyfakefs
Source: https://github.com/jmcgeheeiv/pyfakefs/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: %{python_module pathlib2 >= 2.3.2}
BuildRequires: %{python_module pytest >= 2.8.6}