]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.4
authorScott Worley <scottworley@scottworley.com>
Mon, 7 Jun 2021 19:13:31 +0000 (12:13 -0700)
committerScott Worley <scottworley@scottworley.com>
Mon, 7 Jun 2021 19:13:31 +0000 (12:13 -0700)
default.nix
setup.py

index 8397cb6d87debf6bb5edaac1fd8af140b8d6f562..913f546ee06d497f2bee7b635dbfd6dade403e9b 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.3";
+    version = "3.0.4-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ git-cache ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 70fca63931e9b190878f81421a4a55aff03fbd43..cb272ae5fb264d2dce965d95af60ec4116c49ee3 100644 (file)
--- 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'],