From: Scott Worley Date: Mon, 7 Jun 2021 19:13:31 +0000 (-0700) Subject: Start on 3.0.4 X-Git-Tag: v3.0.4~2 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/10adf165ad567b19f3a389d33788afa91b42425a?hp=175e0ccf87e154008e4a3f41576045070c83241a Start on 3.0.4 --- diff --git a/default.nix b/default.nix index 8397cb6..913f546 100644 --- a/default.nix +++ b/default.nix @@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, git-cache, }: buildPythonPackage rec { pname = "pinch"; - version = "3.0.3"; + version = "3.0.4-pre"; src = lib.cleanSource ./.; propagatedBuildInputs = [ git-cache ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 70fca63..cb272ae 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.3', + version='3.0.4-pre', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'],