Don't install poetry extras for application
This commit is contained in:
parent
a37788a97c
commit
e2ffc04f8c
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "0.1.0"
|
||||
__version__ = "0.1.0-dev"
|
||||
|
|
Loading…
Reference in a new issue