Skip to content

Commit

Permalink
Add per-IPC-Run for openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherRabotin committed Sep 6, 2023
1 parent 9e93a4e commit 36c16da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM opensuse/tumbleweed

# Install Python 3.10 and other necessary packages
RUN zypper ref && \
zypper -n in gcc make python310 python310-pip uuid-runtime perl && \
zypper -n in gcc make python310 python310-pip uuid-runtime perl perl-IPC-Run && \
zypper clean

WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions python/nyx_space/plots/traj.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def plot_traj(
if not isinstance(dfs, list):
dfs = [dfs]

for df in dfs:
for k, df in enumerate(dfs):
print(df.describe())
print(df.columns)
color_values = list(colors.values())
Expand All @@ -78,7 +78,7 @@ def plot_traj(
df["y (km)"],
df["z (km)"],
df["Epoch:Gregorian UTC"],
color=color_values[len(fig.data) % len(color_values)],
color=color_values[k % len(color_values)],
name=title,
)
]
Expand Down

0 comments on commit 36c16da

Please sign in to comment.