]> git.scottworley.com Git - hellowebpy/commitdiff
Start on 1.0.1
authorScott Worley <scottworley@scottworley.com>
Fri, 26 Jan 2024 17:33:10 +0000 (09:33 -0800)
committerScott Worley <scottworley@scottworley.com>
Fri, 26 Jan 2024 17:33:10 +0000 (09:33 -0800)
default.nix
setup.py

index c256aea11384b30734dcdc7146a5f566c2b80742..a223caaf8675c1a687658e42a1d6900f7d786daa 100644 (file)
@@ -4,7 +4,7 @@ pkgs.python3Packages.callPackage
 ({ autopep8, buildPythonPackage, curl, lib, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "hellowebpy";
-    version = "1.0.0";
+    version = "1.0.1-pre";
     src = lib.cleanSource ./.;
     PIP_DISABLE_PIP_VERSION_CHECK = 1;
     checkInputs = [ curl mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 0bce1add0de7e336843a4521a93934edf2f82a45..f5b2efe3d16049a6dd92dd203761e2225df331a4 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='hellowebpy',
-    version='1.0.0',
+    version='1.0.1-pre',
     description="A minimal 'hello world' python web server.",
     author="Scott Worley",
     author_email="scottworley@scottworley.com",