We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 329e3d9 commit 5ea2f63Copy full SHA for 5ea2f63
2 files changed
setup.py
@@ -15,10 +15,9 @@ def main():
15
python_requires=">=3.6.0",
16
install_requires=[
17
"autopep8",
18
- "objgraph",
19
"h2",
20
"protobuf",
21
- "curio~=0.9.0",
+ "curio",
22
],
23
entry_points={'console_scripts': console_scripts},
24
setup_requires=["pytest-runner"],
src/purerpc/utils.py
@@ -1,7 +1,6 @@
1
import platform
2
import curio
3
import pdb
4
-import objgraph
5
import math
6
7
@@ -20,6 +19,7 @@ def get_linux_kernel_version():
async def print_memory_growth_statistics(interval_sec=10.0, set_pdb_trace_every=math.inf):
num_iters = 0
+ import objgraph
while True:
num_iters += 1
25
await curio.sleep(interval_sec)
0 commit comments