Skip to content

Commit

Permalink
fix numpy version to 1.23.5
Browse files Browse the repository at this point in the history
  • Loading branch information
chetanyagoyal committed Oct 4, 2024
1 parent 5e9f613 commit 44820cf
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/glayout_opamp_sim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ jobs:
pip3 install -r requirements.txt &&\
cd ./openfasoc/generators/glayout/tapeout/tapeout_and_RL/ &&\
pip3 install prettyprint prettyprinttree gdstk &&\
python3 -m pip uninstall numpy -y &&\
python3 -m pip install numpy==1.23.5 &&\
python3 test_glayout_ci.py --component opamp_parametric
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
Expand Down
10 changes: 0 additions & 10 deletions .github/workflows/glayout_sky130.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ jobs:
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 -m pip uninstall numpy -y &&\
python3 -m pip install numpy==1.23.5 &&\
python3 test_glayout_ci.py --component opamp
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
Expand All @@ -64,8 +62,6 @@ jobs:
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 -m pip uninstall numpy -y &&\
python3 -m pip install numpy==1.23.5 &&\
python3 test_glayout_ci.py --component pmos
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
Expand All @@ -86,8 +82,6 @@ jobs:
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 -m pip uninstall numpy -y &&\
python3 -m pip install numpy==1.23.5 &&\
python3 test_glayout_ci.py --component nmos
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
Expand All @@ -108,8 +102,6 @@ jobs:
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 -m pip uninstall numpy -y &&\
python3 -m pip install numpy==1.23.5 &&\
python3 test_glayout_ci.py --component diff_pair
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
Expand All @@ -130,8 +122,6 @@ jobs:
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 -m pip uninstall numpy -y &&\
python3 -m pip install numpy==1.23.5 &&\
python3 test_glayout_ci.py --component current_mirror
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
Expand Down
1 change: 1 addition & 0 deletions docker/conda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ENV PDK_ROOT=/usr/bin/miniconda3/share/pdk/
RUN wget https://www.klayout.org/downloads/Ubuntu-22/klayout_0.28.17-1_amd64.deb
RUN dpkg -i klayout_0.28.17-1_amd64.deb
RUN pip install glayout
RUN pip install numpy==1.23.5
#RUN strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5

COPY ./scripts /scripts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ matplotlib
scipy
seaborn
prettyprinttree
numpy==1.23.5
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pandas
klayout
numpy
numpy==1.23.5
matplotlib
gdsfactory==7.7.0
nbsphinx
Expand Down

0 comments on commit 44820cf

Please sign in to comment.