Don't install poetry extras for application

This commit is contained in:
Evie Litherland-Smith 2024-03-24 08:23:07 +00:00
parent a37788a97c
commit e2ffc04f8c
3 changed files with 4 additions and 2 deletions

View file

@ -17,6 +17,7 @@
default = mkPoetryApplication { default = mkPoetryApplication {
projectDir = self; projectDir = self;
preferWheels = true; preferWheels = true;
extras = [];
}; };
}); });
@ -28,6 +29,7 @@
(mkPoetryEnv { (mkPoetryEnv {
projectDir = self; projectDir = self;
preferWheels = true; preferWheels = true;
extras = ["*"];
editablePackageSources = {speedtest_logging = src;}; editablePackageSources = {speedtest_logging = src;};
}) })
poetry poetry

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "speedtest-logging" name = "speedtest-logging"
version = "0.1.0" version = "0.1.0-dev"
description = "Tool to integrate speedtest-cli with regular logging to a Pandas DataFrame" description = "Tool to integrate speedtest-cli with regular logging to a Pandas DataFrame"
authors = ["Evie Litherland-Smith <evie@xenia.me.uk>"] authors = ["Evie Litherland-Smith <evie@xenia.me.uk>"]
readme = "README.org" readme = "README.org"

View file

@ -1 +1 @@
__version__ = "0.1.0" __version__ = "0.1.0-dev"