~dricottone/neopaste

8a80456f4c071f1b38d8acb81fc8b40466ebe4f6 — Dominic Ricottone 2 years ago 0e50f06 dev v1.0.2
Quick fix

I missed the version numbers in the **/internals.py files.
3 files changed, 5 insertions(+), 5 deletions(-)

M Makefile
M neopaste/internals.py
M pyproject.toml
M Makefile => Makefile +3 -3
@@ 1,4 1,4 @@
VERSION=1.0.1
VERSION=1.0.2

PY_COMPILE_BIN=python -m py_compile



@@ 11,7 11,7 @@ UNITTEST_FILE_BIN=unittest --color
UNITTEST_DIR_BIN=unittest --color --working-directory .

#MYPY_BIN=python -m mypy
MYPY_BIN=MYPY_CACHE_DIR=gap/__mypycache__ mypy
MYPY_BIN=MYPY_CACHE_DIR=neopaste/__mypycache__ mypy

#PIPX_BIN=python -m pipx
PIPX_BIN=pipx


@@ 25,7 25,7 @@ neopaste/cli.py: neopaste/cli.toml

.PHONY: test
test:
	$(PY_COMPILE_BIN) gap/*.py
	$(PY_COMPILE_BIN) neopaste/*.py

PY_FILES=neopaste/cli.py neopaste/__main__.py neopaste/columnar.py neopaste/internals.py
PYBUILD_FILES=pyproject.toml LICENSE.md README.md

M neopaste/internals.py => neopaste/internals.py +1 -1
@@ 3,7 3,7 @@
import sys
from typing import *

VERSION = (1,0,0,)
VERSION = (1,0,2,)

def _read_stdin() -> Iterator[str]:
    try:

M pyproject.toml => pyproject.toml +1 -1
@@ 6,7 6,7 @@ build-backend = "setuptools.build_meta"
name = "neopaste"
description = "Paste file streams side-by-side"
readme = "README.md"
version = "1.0.1"
version = "1.0.2"
authors = [ { name = "Dominic Ricottone", email = "me@dominic-ricottone.com" } ]
urls = { source = "git.dominic-ricottone.com/~dricottone/neopaste" }
license = { file = "LICENSE.md" }