Compare commits

..

2 Commits

Author SHA1 Message Date
Sunil Mohan Adapa
3587170bde
*: Update copyright year
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
2025-07-28 15:17:24 -07:00
Alexandre Detiste
cb3a099f04
debian, pyproject.toml: Remove ancient python3-tomli workaround
Thanks to git blame I found why python3-tomli had been added back then:
6199718a19383d8d070b7bdc9d26ead71a9d26dd

python3-tomli is slowly being sunset in favor of tomllib from the Standard
Library: https://wiki.debian.org/Python/Backports

Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2025-07-28 13:58:47 -07:00
6 changed files with 7 additions and 10 deletions

View File

@ -1,9 +1,9 @@
# License to Copy FreedomBox Service (Plinth)
FreedomBox Service (Plinth) is Copyright 2011, 2012, 2013, 2014, 2015, 2016,
2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024 FreedomBox Authors. See Git log
in the source repository for a full list of authors. It is distributed under the
GNU Affero General Public License, Version 3 or later. A copy of AGPLv3 is
2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025 FreedomBox Authors. See Git
log in the source repository for a full list of authors. It is distributed under
the GNU Affero General Public License, Version 3 or later. A copy of AGPLv3 is
available [from the Free Software
Foundation](http://www.gnu.org/licenses/agpl.html).

2
debian/control vendored
View File

@ -52,8 +52,6 @@ Build-Depends:
python3-setuptools,
python3-setuptools-git,
python3-systemd,
# python3-tomli is needed by python3-coverage when pyproject.toml is used
python3-tomli,
python3-typeshed,
python3-yaml,
sshpass,

4
debian/copyright vendored
View File

@ -2,7 +2,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: https://salsa.debian.org/freedombox-team/freedombox
Files: *
Copyright: 2011-2024 FreedomBox Authors
Copyright: 2011-2025 FreedomBox Authors
License: AGPL-3+
Files: plinth/modules/jsxc/static/icons/jsxc.png
@ -15,7 +15,7 @@ Files: doc/*.xml
doc/*.png
doc/*.jpg
doc/*.wiki
Copyright: 2011-2023 FreedomBox Authors
Copyright: 2011-2025 FreedomBox Authors
License: CC-BY-SA-4.0
Files: doc/visual_design/apple-touch-icon*

View File

@ -14,5 +14,5 @@ Restrictions: needs-root, breaks-testbed
# Run unit and integration tests on installed files.
#
Test-Command: PYTHONPATH='/usr/lib/python3/dist-packages/' py.test-3 -p no:cacheprovider --cov=plinth --cov-report=html:debci/htmlcov --cov-report=term
Depends: e2fsprogs, git, python3-pytest, python3-pytest-cov, python3-pytest-django, python3-tomli, @
Depends: e2fsprogs, git, python3-pytest, python3-pytest-cov, python3-pytest-django, @
Restrictions: breaks-testbed

View File

@ -26,7 +26,7 @@ django.setup()
# pylint: disable=invalid-name
project = 'FreedomBox'
copyright = '2021-2024, FreedomBox Authors'
copyright = '2021-2025, FreedomBox Authors'
author = 'FreedomBox Authors'
# The short X.Y version

View File

@ -86,7 +86,6 @@ test = [
"pytest-django",
"flake8",
"requests",
"tomli",
]
[project.urls]