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

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