From 5beb3703ce4fb91ac08fb0f7a3c49e42fa6d71e9 Mon Sep 17 00:00:00 2001 From: Miles Wells Date: Wed, 6 Mar 2024 15:05:18 -0500 Subject: [PATCH] Try valid PEP 508 string --- iblrig_custom_tasks/_sp_passiveVideo/task.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/iblrig_custom_tasks/_sp_passiveVideo/task.py b/iblrig_custom_tasks/_sp_passiveVideo/task.py index c7e4eec..e02e793 100644 --- a/iblrig_custom_tasks/_sp_passiveVideo/task.py +++ b/iblrig_custom_tasks/_sp_passiveVideo/task.py @@ -14,7 +14,7 @@ except ModuleNotFoundError: warnings.warn( 'Please install extra dependencies for _sp_passiveVideo: ' - 'pip install "project_extraction[_sp_passiveVideo] @ ' + 'pip install "project_extraction[passiveVideo] @ ' 'git+https://github.com/int-brain-lab/project_extraction.git"', RuntimeWarning) import pandas as pd from pybpodapi.protocol import Bpod diff --git a/pyproject.toml b/pyproject.toml index 7122515..20d4c83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "project_extraction" -version = "0.2.1.post0" +version = "0.2.2" description = "Custom extractors for satellite tasks" dynamic = [ "readme" ] keywords = [ "IBL", "neuro-science" ] @@ -12,7 +12,7 @@ requires-python = "~=3.10" license = { file = "LICENSE" } [project.optional-dependencies] -_sp_passiveVideo = [ "python-vlc" ] +passiveVideo = [ "python-vlc" ] [tool.setuptools] include-package-data = true