Drop SPARQLWrapper from the required install inputs under Python 2, as it creates a circular dependency. diff -u rdflib-4.1.2.alt/setup.py rdflib-4.1.2/setup.py --- rdflib-4.1.2.alt/setup.py 2014-03-04 12:40:26.000000000 +0100 +++ rdflib-4.1.2/setup.py 2015-01-23 21:52:59.000000000 +0100 @@ -52,7 +52,7 @@ kwargs['test_suite'] = "nose.collector" kwargs['install_requires'] = [ 'isodate', - 'pyparsing', 'SPARQLWrapper'] + 'pyparsing'] if sys.version_info[1]<7: # Python 2.6 kwargs['install_requires'].append('ordereddict') ='49486911dfba3ee72f7185289edcd2f32ffff9b9'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/etc/git/post-merge
AgeCommit message (Expand)Author
2024-05-25maint: Suggest ‘guix git authenticate’ for initial authentication....The previous recommendation, running ‘make authenticate’, was insecure because it led users to run code from the very repository they want to authenticate: https://lists.gnu.org/archive/html/guix-devel/2024-04/msg00252.html * Makefile.am (commit_v1_0_0, channel_intro_commit) (channel_intro_signer, GUIX_GIT_KEYRING, authenticate): Remove. * Makefile.am (.git/hooks/%): New target, generalization of previous ‘.git/hooks/pre-push’ target. (nodist_noinst_DATA): Add ‘.git/hooks/post-merge’. * doc/contributing.texi (Building from Git): Suggest ‘guix git authenticate’ instead of ‘make authenticate’. * etc/git/post-merge: New file. * etc/git/pre-push: Run ‘guix git authenticate’ instead of ‘make authenticate’. Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Reported-by: Skyler Ferris <skyvine@protonmail.com> Change-Id: Ia415aa8375013d0dd095e891116f6ce841d93efd Ludovic Courtès