Skip to content

Commit c61fc54

Browse files
authored
Merge pull request #447 from ModECI/development
Minor update to ensure tests run
2 parents 1518032 + 7fd7059 commit c61fc54

4 files changed

Lines changed: 3 additions & 4 deletions

File tree

.readthedocs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ formats:
1414
- htmlzip
1515

1616
python:
17-
version: 3.7
1817
install:
1918
- requirements: docs/sphinx/requirements.txt
2019

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Most of this packages settings are defined in setup.cfg
66
# FIXME: Not sure of the best way to setup extras_require from setup.cfg
77
extras = {
8-
"psyneulink": ["psyneulink"],
8+
"psyneulink": ["grpcio-tools==1.42.0", "psyneulink"],
99
"neuroml": ["pyNeuroML>=0.5.20", "neuromllite>=0.5.2"],
1010
"tensorflow": ["tensorflow", "keras_visualizer", "pydot"],
1111
"test": [

src/modeci_mdf/interfaces/graphviz/exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def mdf_to_graphviz(
249249
else:
250250
fcolor = "black"
251251

252-
print(f"Bkgd color: {rgb_} ({color}), font: {fcolor}")
252+
# print(f"Bkgd color: {rgb_} ({color}), font: {fcolor}")
253253

254254
graph.attr(
255255
"node",

src/modeci_mdf/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def load_mdf_yaml(filename: str) -> Model:
103103
def color_rgb_to_hex(rgb):
104104
"""Convert a rgb color to hexadecimal format."""
105105
color = "#"
106-
print("Converting %s to hex color" % rgb)
106+
# print("Converting %s to hex color" % rgb)
107107
for a in rgb.split():
108108
color = color + "%02x" % int(float(a) * 255)
109109
return color

0 commit comments

Comments
 (0)