]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.3
authorScott Worley <scottworley@scottworley.com>
Thu, 20 May 2021 06:48:06 +0000 (23:48 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 20 May 2021 06:48:06 +0000 (23:48 -0700)
default.nix
setup.py

index 20858fa1d17cef23ff4ef3291f0273f887d3025b..faf474248c04430906781810f187ff5df6dfec96 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.2";
+    version = "3.0.3-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ git-cache ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 562494f04d90a08da2700025a9a1720f275c0da5..127bd8255196aae7d749ac5e7347ca314e53b1de 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.2',
+    version='3.0.3-pre',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],