From: Scott Worley Date: Sat, 16 Apr 2022 06:51:34 +0000 (-0700) Subject: Start on 3.0.8 X-Git-Tag: v3.0.8~6 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/dc8e913eb5787c5d85038243b53cc4ba80b88fa5?ds=inline Start on 3.0.8 --- diff --git a/default.nix b/default.nix index eb3dac2..a8f4de6 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.7"; + version = "3.0.8-pre"; src = lib.cleanSource ./.; buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ git-cache ]; diff --git a/setup.py b/setup.py index ac3c305..ceb7706 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.7', + version='3.0.8-pre', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'],