From 8a82cbe77b95036f67571e258abbaa589370b5ab Mon Sep 17 00:00:00 2001 From: Gyeongjae Choi Date: Tue, 25 Jun 2024 17:54:35 +0900 Subject: [PATCH] Remove typer extra requirements (#32) * Change extra name for typer * Just typer * Changelog --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index caaf3ac..d195faf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.2.4] - 2024-06-23 + +### Fixed + +- Fixed the warning "typer does not provide the extra 'all'" when installing the package. + ([#32](https://github.com/pyodide/pyodide-cli/pull/32)) + ## [0.2.3] - 2023-01-26 ### Changed diff --git a/pyproject.toml b/pyproject.toml index 4486520..8cfba8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ ] requires-python = ">= 3.10" dependencies = [ - "typer[all]", + "typer", "rich", ]