]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.7
authorScott Worley <scottworley@scottworley.com>
Wed, 2 Feb 2022 01:23:24 +0000 (17:23 -0800)
committerScott Worley <scottworley@scottworley.com>
Wed, 2 Feb 2022 01:23:24 +0000 (17:23 -0800)
default.nix
setup.py

index f35c1524eea48f58286c55771ace59533eefd40f..ad9355e9aed50a119d18a669eb42e3665533404f 100644 (file)
@@ -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 ];
index a19f143536776a507bfc1bcdb0607129843a94b4..d52e791ef4add795077cad24ac472b642c9dc511 100644 (file)
--- 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'],