]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.0
authorScott Worley <scottworley@scottworley.com>
Tue, 30 Jun 2020 20:35:54 +0000 (13:35 -0700)
committerScott Worley <scottworley@scottworley.com>
Fri, 10 Jul 2020 20:21:37 +0000 (13:21 -0700)
default.nix
setup.py

index 6ad80dfb5fc36060b30e55825168023a6dae4e26..1a054198d9d001eb3270472f820d5524d30b352e 100644 (file)
@@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "2.1.1";
+    version = "3.0.0-pre";
     src = lib.cleanSource ./.;
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
     doCheck = true;
index 40618e93ae4fdb48fbae30920c3d64c653f72db9..2c5dfc8bca33b6e0cd6c4c4f6044bb6508d0f3bb 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,8 @@
 from setuptools import setup
 
 setup(
-    name="pinch",
-    version="2.1.1",
+    name='pinch',
+    version='3.0.0-pre',
     py_modules=['pinch'],
-    entry_points={"console_scripts": ["pinch = pinch:main"]},
+    entry_points={'console_scripts': ['pinch = pinch:main']},
 )