Skip to content

Commit 9f8c25f

Browse files
author
Douglas Blank
committed
Version 3.1.2: added requirements
1 parent cfe69fb commit 9f8c25f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

cometx/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
# the express permission of Comet ML Inc.
1313
# *******************************************************
1414

15-
version_info = (3, 1, 1)
15+
version_info = (3, 1, 2)
1616
__version__ = ".".join(map(str, version_info))

cometx/cli/admin_usage_report.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
1919
"""
2020

21+
import os
2122
import warnings
23+
import webbrowser
2224
from collections import defaultdict
2325
from datetime import datetime
2426

@@ -31,9 +33,6 @@
3133

3234
def open_pdf(pdf_path):
3335
"""Open PDF file using the default system application"""
34-
import os
35-
import webbrowser
36-
3736
if os.path.exists(pdf_path):
3837
webbrowser.open(f"file://{os.path.abspath(pdf_path)}")
3938
print(f"Opening PDF: {pdf_path}")

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ scipy
3232
six
3333
syrupy>=4.0.0
3434
tqdm
35-
wandb
35+
webbrowser

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ def get_version(file, name="__version__"):
5151
"six",
5252
"requests",
5353
"tqdm",
54+
"matplotlib",
55+
"webbrowser",
5456
],
5557
extras_require={
5658
"all": [

0 commit comments

Comments
 (0)