From 6f562b0a7a1b9229ce17d69b644a572c00aed565 Mon Sep 17 00:00:00 2001
From: "Mayr, Hannes" <hannes.mayr@stud.tu-darmstadt.de>
Date: Tue, 23 Aug 2022 12:08:54 +0200
Subject: [PATCH] Version bump and deleting unused files

---
 plotid/__init__.py           |  2 +-
 plotid/filecompare.py        |  9 ---------
 plotid/hdf5_external_link.py | 11 -----------
 3 files changed, 1 insertion(+), 21 deletions(-)
 delete mode 100644 plotid/filecompare.py
 delete mode 100644 plotid/hdf5_external_link.py

diff --git a/plotid/__init__.py b/plotid/__init__.py
index f2fe64e..b9b886c 100644
--- a/plotid/__init__.py
+++ b/plotid/__init__.py
@@ -10,5 +10,5 @@ research data, the plot is based on. Additionally, the script that created the
 plot will also be copied to the directory.
 """
 
-__version__ = '0.1.1'
+__version__ = '0.1.2'
 __author__ = 'Institut Fluidsystemtechnik within nfdi4ing at TU Darmstadt'
diff --git a/plotid/filecompare.py b/plotid/filecompare.py
deleted file mode 100644
index 2ccc81a..0000000
--- a/plotid/filecompare.py
+++ /dev/null
@@ -1,9 +0,0 @@
-# -*- coding: utf-8 -*-
-"""Compare if data already exists in published folder to avoid redundancy."""
-
-# Test des Moduls filecmp — File and Directory Comparisons
-
-import filecmp
-
-a = filecmp.cmp("2.py", "test_git.py")
-print(a)
diff --git a/plotid/hdf5_external_link.py b/plotid/hdf5_external_link.py
deleted file mode 100644
index 09b96fa..0000000
--- a/plotid/hdf5_external_link.py
+++ /dev/null
@@ -1,11 +0,0 @@
-"""Handling of hdf5 data files."""
-
-import h5py
-
-# Shows how to create an externalLink (symbolic) to a hdf5 File
-# Documentation available at:
-#    https://docs.h5py.org/en/stable/high/group.html#external-links
-myfile = h5py.File('./example.h5', 'w')
-myfile['ext link'] = h5py.ExternalLink("testdata_2.h5", "/")
-
-myfile.close()
-- 
GitLab