]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.9
authorScott Worley <scottworley@scottworley.com>
Sat, 16 Apr 2022 07:23:15 +0000 (00:23 -0700)
committerScott Worley <scottworley@scottworley.com>
Sat, 16 Apr 2022 07:23:15 +0000 (00:23 -0700)
default.nix
setup.py

index 5608be6b5e7a58d2825e065e21c4df7f556c1900..0c56fe45dc43594befe8526b3a517e3d86a9c7ca 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.8";
+    version = "3.0.9-pre";
     src = lib.cleanSource ./.;
     buildInputs = [ makeWrapper ];
     propagatedBuildInputs = [ git-cache ];
index 6ed20b626000680289289075e613af9cf850ca89..8dc59a281621e74e37abd138dfd338d49b934ff7 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.8',
+    version='3.0.9-pre',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],