Skip to content

Commit

Permalink
Merge pull request #447 from ModECI/development
Browse files Browse the repository at this point in the history
Minor update to ensure tests run
  • Loading branch information
pgleeson authored Mar 27, 2023
2 parents 1518032 + 7fd7059 commit c61fc54
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ formats:
- htmlzip

python:
version: 3.7
install:
- requirements: docs/sphinx/requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Most of this packages settings are defined in setup.cfg
# FIXME: Not sure of the best way to setup extras_require from setup.cfg
extras = {
"psyneulink": ["psyneulink"],
"psyneulink": ["grpcio-tools==1.42.0", "psyneulink"],
"neuroml": ["pyNeuroML>=0.5.20", "neuromllite>=0.5.2"],
"tensorflow": ["tensorflow", "keras_visualizer", "pydot"],
"test": [
Expand Down
2 changes: 1 addition & 1 deletion src/modeci_mdf/interfaces/graphviz/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def mdf_to_graphviz(
else:
fcolor = "black"

print(f"Bkgd color: {rgb_} ({color}), font: {fcolor}")
# print(f"Bkgd color: {rgb_} ({color}), font: {fcolor}")

graph.attr(
"node",
Expand Down
2 changes: 1 addition & 1 deletion src/modeci_mdf/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def load_mdf_yaml(filename: str) -> Model:
def color_rgb_to_hex(rgb):
"""Convert a rgb color to hexadecimal format."""
color = "#"
print("Converting %s to hex color" % rgb)
# print("Converting %s to hex color" % rgb)
for a in rgb.split():
color = color + "%02x" % int(float(a) * 255)
return color
Expand Down

0 comments on commit c61fc54

Please sign in to comment.