aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2023-12-30 18:49:54 +0100
committerAndrew Ammerlaan <andrewammerlaan@gentoo.org>2023-12-31 09:50:14 +0100
commita41aaaa815f369eb11da43a27bce0fd4a98b97fa (patch)
tree289474b3a1b5bfd1009fbb1eec44f256e6507feb /dev-python/heudiconv/files
parentdev-python/hdmf: remove unused patches (diff)
downloadsci-a41aaaa815f369eb11da43a27bce0fd4a98b97fa.tar.gz
sci-a41aaaa815f369eb11da43a27bce0fd4a98b97fa.tar.bz2
sci-a41aaaa815f369eb11da43a27bce0fd4a98b97fa.zip
dev-python/heudiconv: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'dev-python/heudiconv/files')
-rw-r--r--dev-python/heudiconv/files/heudiconv-0.11.6-gitenv.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-python/heudiconv/files/heudiconv-0.11.6-gitenv.patch b/dev-python/heudiconv/files/heudiconv-0.11.6-gitenv.patch
deleted file mode 100644
index 23be6d000..000000000
--- a/dev-python/heudiconv/files/heudiconv-0.11.6-gitenv.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 0c30781248e0c1f2d437e0dfd923a74d7e647411 Mon Sep 17 00:00:00 2001
-From: Horea Christian <chr@chymera.eu>
-Date: Wed, 1 Feb 2023 21:34:58 -0500
-Subject: [PATCH] Setting git author and email in test environment
-
----
- heudiconv/tests/conftest.py | 3 +++
- 1 file changed, 3 insertions(+)
- create mode 100644 heudiconv/tests/conftest.py
-
-diff --git /dev/null b/heudiconv/tests/conftest.py
-new file mode 100644
-index 00000000..f4f47d16
---- /dev/null
-+++ b/heudiconv/tests/conftest.py
-@@ -0,0 +1,8 @@
-+import os
-+import pytest
-+@pytest.fixture(autouse=True, scope="session")
-+def git_env():
-+ os.environ["GIT_AUTHOR_EMAIL"] = "maxm@example.com"
-+ os.environ["GIT_AUTHOR_NAME"] = "Max Mustermann"
-+ os.environ["GIT_COMMITTER_EMAIL"] = "maxm@example.com"
-+ os.environ["GIT_COMMITTER_NAME"] = "Max Mustermann"