From: Scott Worley Date: Tue, 30 Jun 2020 20:35:54 +0000 (-0700) Subject: Start on 3.0.0 X-Git-Tag: v3.0.0~2 X-Git-Url: http://git.scottworley.com/pinch/commitdiff_plain/25e38f08151f05d53bb978f5185e32cdc94650af Start on 3.0.0 --- diff --git a/default.nix b/default.nix index 6ad80df..1a05419 100644 --- a/default.nix +++ b/default.nix @@ -3,7 +3,7 @@ pkgs.python3Packages.callPackage ({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }: buildPythonPackage rec { pname = "pinch"; - version = "2.1.1"; + version = "3.0.0-pre"; src = lib.cleanSource ./.; checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ]; doCheck = true; diff --git a/setup.py b/setup.py index 40618e9..2c5dfc8 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ from setuptools import setup setup( - name="pinch", - version="2.1.1", + name='pinch', + version='3.0.0-pre', py_modules=['pinch'], - entry_points={"console_scripts": ["pinch = pinch:main"]}, + entry_points={'console_scripts': ['pinch = pinch:main']}, )