]> git.scottworley.com Git - pinch/commitdiff
Start on 3.0.1
authorScott Worley <scottworley@scottworley.com>
Wed, 15 Jul 2020 19:43:20 +0000 (12:43 -0700)
committerScott Worley <scottworley@scottworley.com>
Wed, 15 Jul 2020 19:43:20 +0000 (12:43 -0700)
default.nix
setup.py

index 62798c154dc5150ad2ffbe7bfa36e35d6c22f9cf..56f47deebc7b86acddafed2e53a553e3bd9350ab 100644 (file)
@@ -19,7 +19,7 @@ in pkgs.python3Packages.callPackage
 ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, git-cache, }:
   buildPythonPackage rec {
     pname = "pinch";
-    version = "3.0.0";
+    version = "3.0.1-pre";
     src = lib.cleanSource ./.;
     propagatedBuildInputs = [ git-cache ];
     checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
index 97dada4604cbe048dc811e7aba1acaed0741e788..381debd05a1b29f98d2e094832313d9f365144f1 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
 
 setup(
     name='pinch',
-    version='3.0.0',
+    version='3.0.1-pre',
     py_modules=['pinch'],
     entry_points={'console_scripts': ['pinch = pinch:main']},
     dependency_links=['https://scottworley.com/git/git-cache'],