-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
emscripten-3.1.73 minor changes (#1529)
* minor changes * skip all exisiting * skip setup step * require newer rattler version: * check direct invocation:] * change pin * unchange * more pinning * change pin * unchange pinning
- Loading branch information
1 parent
876c605
commit 2f2e168
Showing
7 changed files
with
36 additions
and
39 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
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 |
---|---|---|
@@ -1,18 +1,22 @@ | ||
def test_imports(): | ||
import matplotlib.pyplot as plt | ||
# def test_imports(): | ||
# import matplotlib.pyplot as plt | ||
|
||
import pandas | ||
from pandas import read_csv, DataFrame | ||
# import pandas | ||
# from pandas import read_csv, DataFrame | ||
|
||
import pyarrow as pa | ||
# import pyarrow as pa | ||
|
||
import pkgutil | ||
import scipy.interpolate | ||
import scipy | ||
# import pkgutil | ||
# import scipy.interpolate | ||
# import scipy | ||
|
||
for submodule in pkgutil.iter_modules(scipy.__path__): | ||
__import__(f"scipy.{submodule.name}") | ||
# for submodule in pkgutil.iter_modules(scipy.__path__): | ||
# __import__(f"scipy.{submodule.name}") | ||
|
||
import IPython | ||
from IPython.core.displayhook import DisplayHook | ||
from IPython.core.displaypub import DisplayPublisher | ||
# import IPython | ||
# from IPython.core.displayhook import DisplayHook | ||
# from IPython.core.displaypub import DisplayPublisher | ||
|
||
|
||
def test_import(): | ||
import numpy as np |