From 67aaf961c6199eb451b7fcee519a1b2aefe58bf4 Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 9 Feb 2024 12:41:57 +0100 Subject: [PATCH] Updated limedriver subproject and Python dependencies Upgraded the limedriver subproject to bring in latest enhancements and fixes. Added 'h5py' and 'matplotlib' to the list of Python project dependencies, ensuring the availability of necessary libraries for data handling and plotting functionalities within our project. --- extern/limedriver | 2 +- pyproject.toml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/extern/limedriver b/extern/limedriver index f9d86bd..a6b8a3f 160000 --- a/extern/limedriver +++ b/extern/limedriver @@ -1 +1 @@ -Subproject commit f9d86bd4dea17250d9b0267936fb99d35a4ad1fd +Subproject commit a6b8a3fd672cc1d32f74e2e9b8a188f0d522b990 diff --git a/pyproject.toml b/pyproject.toml index cf876c9..cacd866 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,10 @@ classifiers = [ "Topic :: Software Development :: Build Tools", "Programming Language :: Python :: 3", ] +dependencies = [ + "h5py", + "matplotlib", +] [build-system] requires = [ @@ -23,4 +27,4 @@ requires = [ 'matplotlib', ] -build-backend = "setuptools.build_meta" \ No newline at end of file +build-backend = "setuptools.build_meta"