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

v3.0.5 #237

Merged
merged 13 commits into from
Jan 3, 2025
Merged
2 changes: 1 addition & 1 deletion .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pip==23.1.2
pip install -r requirements.txt

- name: Lint with flake8
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ jdhapi/test/test-httpie.py
.env
.env.*
!.env.example

outputs/
.vscode
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG GIT_TAG
ARG GIT_BRANCH
ARG GIT_REVISION

RUN pip install --upgrade pip
RUN pip install pip==23.1.2

RUN apk add --no-cache \
postgresql-libs \
Expand Down Expand Up @@ -56,11 +56,13 @@ COPY dbconnection.py .
COPY manage.py .
COPY requirements.txt .


RUN pip install -r requirements.txt

RUN apk del --no-cache .build-deps

RUN mkdir -p logs
RUN mkdir -p outputs

ENV GIT_TAG=${GIT_TAG}
ENV GIT_BRANCH=${GIT_BRANCH}
Expand Down
6 changes: 0 additions & 6 deletions Untitled.ipynb

This file was deleted.

4 changes: 2 additions & 2 deletions jdh/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@
'level': get_env_variable('DJANGO_LOG_LEVEL', 'DEBUG'),
'propagate': True,
},
'jdhseo.views': {
'jdhseo': {
'handlers': ['console'],
'level': get_env_variable('DJANGO_LOG_LEVEL', 'DEBUG'),
'propagate': False,
'propagate': True,
},
},
'formatters': {
Expand Down
625 changes: 275 additions & 350 deletions jdh_statistics.ipynb

Large diffs are not rendered by default.

Loading
Loading