diff --git a/flake.nix b/flake.nix index b68634f..d39774e 100644 --- a/flake.nix +++ b/flake.nix @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 9618459..d96818e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] readme = "README.org" diff --git a/speedtest_logging/__init__.py b/speedtest_logging/__init__.py index 3dc1f76..607f7a4 100644 --- a/speedtest_logging/__init__.py +++ b/speedtest_logging/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.0-dev"