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

Upstream Branch #164

Merged
merged 5 commits into from
Sep 24, 2023
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/backend_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- master
- fix/build
pull_request:
branches:
- master
Expand Down Expand Up @@ -104,11 +105,17 @@ jobs:
pip install numpy
pip install GDAL==$(gdal-config --version) --global-option=build_ext --global-option="-I/usr/include/gdal"

- name : Check Opencv version
run: |
pip freeze | grep opencv
pip install opencv-python-headless==4.7.0.68

- name: Run tests
env:
TESTING_TOKEN: ${{ secrets.TESTING_TOKEN }}
run: |
cd backend/


export TESTING_TOKEN=$TESTING_TOKEN
python manage.py makemigrations
Expand Down
3 changes: 2 additions & 1 deletion backend/docker/ramp/docker-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ munch==2.5.0
munkres==1.1.4
networkx
numpy
opencv-python==4.5.5.64
opencv-python<=4.5.5.64
opencv-python-headless<=4.7.0.68
packaging==21.3
pandas
partd==1.2.0
Expand Down
Loading