Alexandre Detiste pushed to branch master at Debian Med / python-datacache
Commits: ab2babd1 by Alexandre Detiste at 2024-09-26T09:24:32+02:00 refresh patch - - - - - 0770e5ee by Alexandre Detiste at 2024-09-26T09:40:46+02:00 replace appdirs with platformdirs (Closes: #1067990) - - - - - 28db2b99 by Alexandre Detiste at 2024-09-26T09:43:02+02:00 release - - - - - 5 changed files: - debian/changelog - debian/control - + debian/patches/remove-appdirs.patch - debian/patches/remove-mock.patch - debian/patches/series Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,11 @@ +python-datacache (1.4.1-2) unstable; urgency=medium + + * Team upload. + * Fix autopkgtest breakage due to rename test/ -> tests/ + * Replace appdirs with platformdirs (Closes: #1067990) + + -- Alexandre Detiste <[email protected]> Thu, 26 Sep 2024 09:42:35 +0200 + python-datacache (1.4.1-1) unstable; urgency=medium * Team upload. ===================================== debian/control ===================================== @@ -9,7 +9,7 @@ Build-Depends: debhelper-compat (= 13), python3-all, python3-requests, python3-pandas, - python3-appdirs, + python3-platformdirs, python3-biopython <!nocheck>, python3-typechecks <!nocheck> Standards-Version: 4.6.2 ===================================== debian/patches/remove-appdirs.patch ===================================== @@ -0,0 +1,22 @@ +--- a/datacache/common.py ++++ b/datacache/common.py +@@ -16,7 +16,7 @@ + import re + + from shutil import rmtree +-import appdirs ++import platformdirs as appdirs + + def ensure_dir(path): + if not exists(path): +--- a/setup.py ++++ b/setup.py +@@ -54,7 +54,7 @@ + ], + install_requires=[ + "pandas>=0.15.2", +- "appdirs>=1.4.0", ++ "platformdirs>=1.4.0", + "progressbar33>=2.4", + "requests>=2.5.1", + "typechecks>=0.0.2", ===================================== debian/patches/remove-mock.patch ===================================== @@ -3,16 +3,9 @@ Last-Update: Fri, 05 Jan 2024 21:11:16 +0100 Bug-Debian: https://bugs.debian.org/1060092 Description: remove usage of old python3-mock ---- a/datacache.egg-info/requires.txt -+++ b/datacache.egg-info/requires.txt -@@ -3,4 +3,3 @@ appdirs>=1.4.0 - progressbar33>=2.4 - requests>=2.5.1 - typechecks>=0.0.2 --mock --- a/setup.py +++ b/setup.py -@@ -58,7 +58,6 @@ if __name__ == "__main__": +@@ -58,7 +58,6 @@ "progressbar33>=2.4", "requests>=2.5.1", "typechecks>=0.0.2", ===================================== debian/patches/series ===================================== @@ -1,3 +1,4 @@ noInternetAccessForDownloads.patch switch-to-pytest.patch remove-mock.patch +remove-appdirs.patch View it on GitLab: https://salsa.debian.org/med-team/python-datacache/-/compare/045091ed87f053d84b1ff04413eb97d558a57cb0...28db2b99de2ad8a7d9352487820c463296775c01 -- View it on GitLab: https://salsa.debian.org/med-team/python-datacache/-/compare/045091ed87f053d84b1ff04413eb97d558a57cb0...28db2b99de2ad8a7d9352487820c463296775c01 You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ debian-med-commit mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit
