We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1b9848 commit 7eb0615Copy full SHA for 7eb0615
tests/django_s3_storage_test/tests.py
@@ -88,7 +88,7 @@ def testSaveTextMode(self):
88
with self.save_file(content="foo"):
89
self.assertEqual(default_storage.open("foo.txt").read(), b"foo")
90
91
- @unittest.skipIf(sys.version_info < (3, 12))
+ @unittest.skipIf(sys.version_info < (3, 11), reason="Python 3.11 required")
92
def testOpenTextMode(self):
93
94
self.assertEqual(default_storage.open("foo.txt", "r").read(), "foo")
0 commit comments