From 448c7a49ab28e711e2f3c914525beb08591da8a8 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 16 Feb 2021 22:51:38 -0800 Subject: [PATCH] Start on 3.0.2 --- default.nix | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index e94df96..cda5bb9 100644 --- a/default.nix +++ b/default.nix @@ -38,7 +38,7 @@ in pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, git-cache, }: buildPythonPackage rec { pname = "pinch"; - version = "3.0.1"; + version = "3.0.2-pre"; src = lib.cleanSource ./.; propagatedBuildInputs = [ git-cache ]; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; diff --git a/setup.py b/setup.py index 76e2a21..7ecb1bd 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='pinch', - version='3.0.1', + version='3.0.2-pre', py_modules=['pinch'], entry_points={'console_scripts': ['pinch = pinch:main']}, dependency_links=['https://scottworley.com/git/git-cache'], -- 2.44.1