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 44820cf commit 3b9af39
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/glayout_opamp_sim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ jobs:
bash -c "\
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/tapeout/tapeout_and_RL/. &&\
pip uninstall glayout -y &&\
pip3 install -r requirements.txt &&\
pip3 install -r ./openfasoc/generators/glayout/requirements.txt &&\
cd ./openfasoc/generators/glayout/tapeout/tapeout_and_RL/ &&\
pip3 install prettyprint prettyprinttree gdstk &&\
pip3 install -r requirements.txt
python3 test_glayout_ci.py --component opamp_parametric
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
Expand Down
1 change: 0 additions & 1 deletion docker/conda/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ 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
1 change: 1 addition & 0 deletions openfasoc/generators/glayout/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
gdsfactory==7.7.0
numpy==1.23.5
prettyprint
prettyprinttree
nltk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ scikit-learn
matplotlib
scipy
seaborn
prettyprinttree
numpy==1.23.5
prettyprinttree
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==1.23.5
numpy
matplotlib
gdsfactory==7.7.0
nbsphinx
Expand Down

0 comments on commit 3b9af39

Please sign in to comment.