]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.8
authorScott Worley <scottworley@scottworley.com>
Sat, 16 Apr 2022 06:51:34 +0000 (23:51 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 16 Apr 2022 06:54:28 +0000 (23:54 -0700)
default.nix
setup.py

index eb3dac28153e6f7cef5b181a798150c328e2c023..a8f4de6348478ce7313cdeb7628b81ac46c49b10 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.7";
+    version = "3.0.8-pre";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index ac3c305fa553889d73f9dcf60dc77ceb078f9f84..ceb77062691a4a43147ab40b4ed61396d9802f0d 100644 (file)
--- 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'],