]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.2
authorScott Worley <scottworley@scottworley.com>
Wed, 17 Feb 2021 06:51:38 +0000 (22:51 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 17 Feb 2021 06:51:38 +0000 (22:51 -0800)
default.nix
setup.py

index e94df964e61fae3d462f73c65568b7275f7f2d82..cda5bb9a39b0a55b427cde20c2a3b644d533aad0 100644 (file)
@@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.1";
+    version = "3.0.2-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ git-cache ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 76e2a2175dcb6a8d19bb82f9beb4fd30bda085f6..7ecb1bd9faf2d188a7d0c6ffa74096d2af9ae347 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.1',
+    version='3.0.2-pre',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],