aboutsummaryrefslogtreecommitdiff
path: root/extra_requirements.txt
diff options
context:
space:
mode:
authorMatthew Leather <39400458+matthew16550@users.noreply.github.com>2018-09-04 02:12:53 +1200
committerJohn McGehee <jmcgeheeiv@users.noreply.github.com>2018-09-03 07:12:53 -0700
commit05e7d2a1616239c334d61ac7087e46e4506cf24f (patch)
tree8ba4bd156c77d96c64558b09fcc5e075a558b7ab /extra_requirements.txt
parent8990455e937ae94f036532482d8e8f89422feaf4 (diff)
downloadpyfakefs-05e7d2a1616239c334d61ac7087e46e4506cf24f.tar.gz
Add support for pathlib2 (#408) (#422)
Well done.
Diffstat (limited to 'extra_requirements.txt')
-rw-r--r--extra_requirements.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/extra_requirements.txt b/extra_requirements.txt
new file mode 100644
index 0000000..9352552
--- /dev/null
+++ b/extra_requirements.txt
@@ -0,0 +1,13 @@
+# "pathlib2" and "scandir" are backports of new standard modules, pyfakefs will
+# use them if available when running on older Python versions.
+#
+# They are dependencies of pytest when Python < 3.6 so we sometimes get them via
+# requirements.txt, this file makes them explicit dependencies for testing &
+# development.
+#
+# Older versions might work ok, the versions chosen here are just the latest
+# available at the time of writing.
+
+pathlib2>=2.3.2
+
+scandir>=1.8