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

Django 2.2 python3.8 #3880

Draft
wants to merge 37 commits into
base: django-2.2
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a9d3d7d
Add uv and mise support
hipek8 Dec 12, 2024
b6f4134
Fix workflow
hipek8 Dec 12, 2024
313d9b6
Fix workflow
hipek8 Dec 12, 2024
60b7959
Pin down setuptools
hipek8 Dec 13, 2024
a601a0e
Update workflow
hipek8 Dec 13, 2024
d97c2cc
Update workflow and localtemplate
hipek8 Dec 13, 2024
d828ef9
Bump python
hipek8 Dec 13, 2024
a418fb2
Loosen python version
hipek8 Dec 13, 2024
09fe45e
Loosen python version again
hipek8 Dec 13, 2024
918f61d
Add statsd
hipek8 Dec 13, 2024
d01d9ef
Bump netaddr
hipek8 Dec 13, 2024
c5c784f
Bump ubuntu in github actions
hipek8 Dec 13, 2024
8bd3c03
Fix deps
hipek8 Dec 13, 2024
22d9fa3
Fix github action
hipek8 Dec 13, 2024
712124a
Fix dhcp tests
hipek8 Dec 13, 2024
9b154c7
Fix flake
hipek8 Dec 13, 2024
3505b32
Fix Makefile and pyproject.toml
hipek8 Dec 13, 2024
cb8f83d
Fix pyproject.toml
hipek8 Dec 13, 2024
e3878e1
Fix makefile
hipek8 Dec 13, 2024
faaa6f6
Back to .coveragerc
hipek8 Dec 18, 2024
fd5b528
Fix .coveragerc
hipek8 Dec 18, 2024
8e8ba15
Update mise tasks
hipek8 Dec 19, 2024
423238e
Update mise and debian
hipek8 Jan 16, 2025
86b7ddd
Merge ng
hipek8 Feb 4, 2025
3de738a
Make ruff happy
hipek8 Feb 4, 2025
e4fff86
Run ruff formatting. Add ruff check to CI
hipek8 Feb 4, 2025
20bf8de
Move ruff section to pyproject.toml
hipek8 Feb 4, 2025
3a77e8c
Add missing django-prometheus
hipek8 Feb 4, 2025
45593a1
Remove superfluous requirements file
hipek8 Feb 4, 2025
ff00ce7
Merge django-2.2
hipek8 Feb 4, 2025
4d2da37
Start fixing debian build
hipek8 Feb 4, 2025
0e9246e
Switch to psycopg-binary and specify python version
hipek8 Feb 4, 2025
f5c310c
Add missing libs to install python-ldap
hipek8 Feb 4, 2025
d67e30a
Try removing setuptools pin
hipek8 Feb 4, 2025
349de40
Downgrade pip
hipek8 Feb 4, 2025
fc7a521
Switch from an ugly workaround to another ugly workaround
hipek8 Feb 4, 2025
75dce9d
Add missing libs
hipek8 Feb 4, 2025
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
Prev Previous commit
Next Next commit
Add missing libs to install python-ldap
  • Loading branch information
hipek8 committed Feb 4, 2025
commit f5c310c4363a50840fba5ac982f72dffe81432cc
2 changes: 1 addition & 1 deletion docker/Dockerfile-deb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apt-get update && \

RUN apt-get update && \
apt-get -y install build-essential debhelper devscripts equivs dh-virtualenv \
libmysqlclient-dev libmysqlclient21 \
libmysqlclient-dev libmysqlclient21 libldap2-dev libsasl2-dev \
python3.8 python3.8-dev libffi-dev nodejs npm git-buildpackage vim-tiny git && \
rm -rf /var/lib/apt/lists/* && \
git config --global user.name "$GIT_USER_NAME" && \
Expand Down
Loading