Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUGFIX] Temporarily use local copy of SEAS code to allow Helics flexibility #124

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: False
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest] #, macos-latest, windows-latest]
os: [ubuntu-20.04] #, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion hercules/amr_wind_standin.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@

import numpy as np
import pandas as pd
from SEAS.federate_agent import FederateAgent

from hercules.seas_federate_agent import FederateAgent

# Set up the logger
# Useful for when running on eagle
Expand Down
3 changes: 2 additions & 1 deletion hercules/emulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

import numpy as np
import pandas as pd
from SEAS.federate_agent import FederateAgent

from hercules.seas_federate_agent import FederateAgent

LOGFILE = str(dt.datetime.now()).replace(":", "_").replace(" ", "_").replace(".", "_")

Expand Down
Loading
Loading