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

Hotfix/impact numbers #853

Merged
merged 4 commits into from
Oct 10, 2024
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- checkout
- restore_cache:
keys:
- v3-dependencies-{{ checksum "Pipfile.lock" }}
- v4-dependencies-{{ checksum "Pipfile.lock" }}
- run: &install-pipenv pip install -U pipenv==2023.6.26 urllib3 wheel==0.38.4 pip --quiet --no-input
- run: pipenv sync --dev
- run: pipenv run pipenv check # before save_cache so an insecure cache is never saved
Expand All @@ -29,7 +29,7 @@ jobs:
when: on_success
paths:
- ~/.local/share/virtualenvs/
key: v3-dependencies-{{ checksum "Pipfile.lock" }}
key: v4-dependencies-{{ checksum "Pipfile.lock" }}

test:
docker:
Expand All @@ -49,7 +49,7 @@ jobs:
# Download and cache dependencies
- restore_cache:
keys:
- v3-dependencies-{{ checksum "Pipfile.lock" }}
- v4-dependencies-{{ checksum "Pipfile.lock" }}
- run:
name: Install HTML Tidy
command: wget https://github.com/htacg/tidy-html5/releases/download/5.8.0/tidy-5.8.0-Linux-64bit.deb && sudo dpkg -i tidy-5.8.0-Linux-64bit.deb
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
at: ~/repo/
- restore_cache:
keys:
- v3-dependencies-{{ checksum "Pipfile.lock" }}
- v4-dependencies-{{ checksum "Pipfile.lock" }}
- run: *install-pipenv
- run: pip install -r deploy-requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ feedparser = "==6.0.11"
pytz = "==2024.1"
urllib3 = "<3.0.0"
pre-commit = "*"
django = "==4.2.15"
django = "==4.2.16"
zipp = "*"
certifi = "*"
dc-django-utils = {file = "https://github.com/DemocracyClub/dc_django_utils/archive/refs/tags/6.1.1.tar.gz"}
Expand Down
Loading