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 {
projectDir = self;
preferWheels = true;
extras = [];
};
});
@ -28,6 +29,7 @@
(mkPoetryEnv {
projectDir = self;
preferWheels = true;
extras = ["*"];
editablePackageSources = {speedtest_logging = src;};
})
poetry

View file

@ -1,6 +1,6 @@
[tool.poetry]
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"
authors = ["Evie Litherland-Smith <evie@xenia.me.uk>"]
readme = "README.org"

View file

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