From: Scott Worley Date: Wed, 2 Feb 2022 01:23:24 +0000 (-0800) Subject: Start on 3.0.7 X-Git-Tag: v3.0.7~2 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/b11f21b085df77bd26f1c0c41a78e3ca953267e5 Start on 3.0.7 --- diff --git a/default.nix b/default.nix index f35c152..ad9355e 100644 --- a/default.nix +++ b/default.nix @@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix_2_3, git , autopep8, makeWrapper, mypy, pylint, git-cache, }: buildPythonPackage rec { pname = "pinch"; - version = "3.0.6"; + version = "3.0.7-pre"; src = lib.cleanSource ./.; buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ git-cache ]; diff --git a/setup.py b/setup.py index a19f143..d52e791 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.6', + version='3.0.7-pre', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'],