]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.5
authorScott Worley <scottworley@scottworley.com>
Fri, 9 Jul 2021 22:10:12 +0000 (15:10 -0700)
committerScott Worley <scottworley@scottworley.com>
Fri, 9 Jul 2021 22:10:12 +0000 (15:10 -0700)
default.nix
setup.py

index dc7470bda944c7134c2d2c88a89734c6013a41c2..071c4283cd5a7e1b699d8bfbe3d0c25a8d23d8ac 100644 (file)
@@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git
   , autopep8, makeWrapper, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.4";
+    version = "3.0.5-pre";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index ab680db5a652ec1e718db5fcf23f868c933534b9..7dff4ee6d74f123b42e09eed973a4ec17c291ad8 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.4',
+    version='3.0.5-pre',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],