-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* some improvements * some improvements * try to compile for M1 and M2 apple using cibuildwheel * try to compile for M1 and M2 apple using cibuildwheel * still trying to build lightsim for M1 chip * still trying to build lightsim for M1 chip * still trying to build lightsim for M1 chip * still trying to build lightsim for M1 chip * still trying to build lightsim for M1 chip * still trying to build lightsim for M1 chip * trying to cross compile on macos for M1 * trying to cross compile on macos for M1 / M2 chip * trying to cross compile on macos for M1 / M2 chip * trying to cross compile on macos for M1 / M2 chip * trying to cross compile on macos for M1 / M2 chip * trying to cross compile on macos for M1 / M2 chip * trying to cross compile on macos for M1 / M2 chip * trying to cross compile on macos for M1 / M2 chip * re evaluating the full ci pipeline again * bump to actions/upload-artifact@v3 [skip ci] * ready for version 0.7.4 * small modification to fix issue spotted in sim2real in grid2op
- Loading branch information
Showing
8 changed files
with
200 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# this class is defined to avoid circular references when using grid2op -> pandapower -> lightsim2grid -> grid2op | ||
# this module is lazily imported by the LightSimBackend and should not be used anywhere else, | ||
# as the name states | ||
try: | ||
from grid2op.Backend import PandaPowerBackend | ||
class _DoNotUseAnywherePandaPowerBackend(PandaPowerBackend): | ||
"""used to duplicate the class attributes of PandaPowerBackend""" | ||
pass | ||
except ImportError as exc_: | ||
# grid2op is not installed, we do not use it. | ||
pass |
Oops, something went wrong.