Skip to content
This repository was archived by the owner on Jun 12, 2023. It is now read-only.

Commit c572b34

Browse files
authored
Pin pyfakefs to avoid broken release (#528)
* Pin pyfakefs to avoid broken release The recent pyfakefs 4.2.0 release is raising an import error whenever it's imported, see pytest-dev/pyfakefs#565 for more details. This commit pins the pyfakefs version to the last known working version until there is a new release fixing this issue. * Ignore numba namespace in pylint
1 parent 9b93389 commit c572b34

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ ignore-mixin-members=yes
295295
# (useful for modules/projects where namespaces are manipulated during runtime
296296
# and thus existing member attributes cannot be deduced by static analysis. It
297297
# supports qualified module names, as well as Unix pattern matching.
298-
ignored-modules=matplotlib.cm,numpy.random,retworkx
298+
ignored-modules=matplotlib.cm,numpy.random,retworkx,numba
299299

300300
# List of class names for which member attributes should not be checked (useful
301301
# for classes with dynamically set attributes). This supports the use of

constraints.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ pylint==2.4.4
22
astroid==2.3.3
33
pywin32==225
44
setuptools==49.6.0
5+
pyfakefs==4.1.0

0 commit comments

Comments
 (0)