We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce2814 commit 098e3c1Copy full SHA for 098e3c1
2 files changed
setup.py
@@ -25,7 +25,7 @@ def run(self):
25
setuptools.setup(
26
name='frameioclient',
27
version=version,
28
- python_requires='>=2.6',
+ python_requires='>=2.6, <4',
29
install_requires=[
30
'requests',
31
'urllib3',
tests/integration.py
@@ -3,6 +3,7 @@
3
import json
4
import mimetypes
5
import platform
6
+import time
7
8
from frameioclient import FrameioClient
9
@@ -83,6 +84,11 @@ def test_upload(client):
83
84
85
print("Done uploading file {} of {}".format((count+1), len(dled_files)))
86
87
+ print("Sleeping for 5 seconds to allow uploads to finish...")
88
+ time.sleep(5)
89
+
90
+ print("Continuing...")
91
92
return new_parent_id
93
94
# Flatten asset children and pull out important info for comparison
0 commit comments