Compare commits

..

9 Commits

Author SHA1 Message Date
Benjamin Dauvergne 0f820ef4f8 misc: do not overload admin/index.html completely (#75735)
gitea/zoo/pipeline/head This commit looks good Details
2024-02-04 21:23:43 +01:00
Valentin Deniaud ca75dc2251 setup: allow djangorestframework 3.14 (#81951)
gitea/zoo/pipeline/head This commit looks good Details
2023-12-18 11:17:06 +01:00
Thomas NOËL d17fdfe2bb debian: add back memory-report to uwsgi default configuration (#80451)
gitea/zoo/pipeline/head This commit looks good Details
2023-11-13 11:35:54 +01:00
Thomas NOËL c1724e1051 debian: add uwsgi/zoo SyslogIdentifier in service (#82977)
gitea/zoo/pipeline/head This commit looks good Details
2023-10-31 13:22:46 +01:00
Frédéric Péters 7e6548c77e ci: keep on using pylint 2 while pylint-django is not ready (#81905)
gitea/zoo/pipeline/head This commit looks good Details
2023-10-03 06:15:44 +02:00
Thomas NOËL c0358f241f debian: remove memory-report from uwsgi default configuration (#79890)
gitea/zoo/pipeline/head This commit looks good Details
2023-07-20 18:00:42 +02:00
Frédéric Péters 6b4c6a36e3 ci: build deb package for bookworm (#78968)
gitea/zoo/pipeline/head This commit looks good Details
2023-06-23 17:58:57 +02:00
Thomas NOËL 593ced86e3 trivial: use python3 for zoo-manage help message
gitea/zoo/pipeline/head This commit looks good Details
2023-03-23 11:19:36 +01:00
Thomas NOËL f07b968145 tox: remove django 2.2 (dj22) target 2023-03-23 11:19:03 +01:00
5 changed files with 7 additions and 5 deletions

4
Jenkinsfile vendored
View File

@ -30,9 +30,9 @@ pipeline {
'''
).trim()
if (env.GIT_BRANCH == 'main' || env.GIT_BRANCH == 'origin/main') {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --epoch 1 -d bullseye ${SHORT_JOB_NAME}"
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --epoch 1 -d bullseye,bookworm ${SHORT_JOB_NAME}"
} else if (env.GIT_BRANCH.startsWith('hotfix/')) {
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --epoch 1 -d bullseye --branch ${env.GIT_BRANCH} --hotfix ${SHORT_JOB_NAME}"
sh "sudo -H -u eobuilder /usr/local/bin/eobuilder --epoch 1 -d bullseye,bookworm --branch ${env.GIT_BRANCH} --hotfix ${SHORT_JOB_NAME}"
}
}
}

2
debian/zoo-manage vendored
View File

@ -18,7 +18,7 @@ fi
if test $# -eq 0
then
python ${MANAGE} help
python3 ${MANAGE} help
exit 1
fi

1
debian/zoo.service vendored
View File

@ -4,6 +4,7 @@ After=network.target postgresql.service
Wants=postgresql.service
[Service]
SyslogIdentifier=uwsgi/%p
Environment=ZOO_SETTINGS_FILE=/usr/lib/%p/debian_config.py
Environment=LANG=C.UTF-8
User=%p

View File

@ -110,7 +110,7 @@ setup(
'isodate',
'jsonschema',
'gadjo',
'djangorestframework>=3.9,<3.13',
'djangorestframework>=3.9,<3.15',
'pytz',
'python-dateutil',
'django-admin-rangefilter',

View File

@ -29,7 +29,8 @@ deps =
pytest>=3.3.0
lxml
cssselect
pylint
pylint<3
astroid<3
pylint-django
django-webtest
WebTest