From 916d14cc1765ee42999223020187c988b691b585 Mon Sep 17 00:00:00 2001 From: Raja Sekhar Rao Dheekonda Date: Thu, 26 Jun 2025 13:52:38 -0700 Subject: [PATCH] Fix Readme --- README.md | 6 +++--- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e3653aa1..3fbe6f88 100644 --- a/README.md +++ b/README.md @@ -105,13 +105,13 @@ For advanced media processing capabilities (audio, video, images), install the m ```bash # Multimodal support (audio, video processing) -pip install -U dreadnode[multimodal] +pip install -U "dreadnode[multimodal]" # Training support (ML model integration) -pip install -U dreadnode[training] +pip install -U "dreadnode[training]" # All optional features -pip install -U dreadnode[all] +pip install -U "dreadnode[all]" ``` See our **[installation guide](https://docs.dreadnode.io/strikes/install)** for more options. diff --git a/pyproject.toml b/pyproject.toml index fb35f4c0..0fa0f484 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ [project] name = "dreadnode" -version = "1.0.9" +version = "1.10.0" description = "Dreadnode SDK" requires-python = ">=3.10,<3.14" [tool.poetry] name = "dreadnode" -version = "1.0.9" +version = "1.10.0" description = "Dreadnode SDK" authors = ["Nick Landers "] repository = "https://github.com/dreadnode/sdk"