Skip to content

Commit

Permalink
v3.0.5
Browse files Browse the repository at this point in the history
v3.0.5
  • Loading branch information
eliselavy authored Jan 3, 2025
2 parents e140e3f + 68190c7 commit 3a5fdbd
Show file tree
Hide file tree
Showing 18 changed files with 987 additions and 498 deletions.
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

0 comments on commit 3a5fdbd

Please sign in to comment.