Skip to content

Commit 5ea2f63

Browse files
committed
Refactor deps
1 parent 329e3d9 commit 5ea2f63

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,9 @@ def main():
1515
python_requires=">=3.6.0",
1616
install_requires=[
1717
"autopep8",
18-
"objgraph",
1918
"h2",
2019
"protobuf",
21-
"curio~=0.9.0",
20+
"curio",
2221
],
2322
entry_points={'console_scripts': console_scripts},
2423
setup_requires=["pytest-runner"],

src/purerpc/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import platform
22
import curio
33
import pdb
4-
import objgraph
54
import math
65

76

@@ -20,6 +19,7 @@ def get_linux_kernel_version():
2019

2120
async def print_memory_growth_statistics(interval_sec=10.0, set_pdb_trace_every=math.inf):
2221
num_iters = 0
22+
import objgraph
2323
while True:
2424
num_iters += 1
2525
await curio.sleep(interval_sec)

0 commit comments

Comments
 (0)