From 279dcb418923f445b2c8aa0c21ebd4dc2d70dcd8 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Wed, 6 Jul 2022 14:53:52 -0400 Subject: [PATCH] fix old github refs modified: CONTRIBUTING.rst modified: README.rst modified: setup.py --- CONTRIBUTING.rst | 4 ++++ README.rst | 6 +----- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index dde9f01..6ed7c99 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -4,4 +4,8 @@ To contribute please make sure all tests pass. If you are adding new functionality please write a unit test. +Try running this: + +`make test` + To avoid discussions regarding code formatting, please use `black `_ with default settings. diff --git a/README.rst b/README.rst index 9ca2c93..505d144 100644 --- a/README.rst +++ b/README.rst @@ -45,13 +45,9 @@ install from pypi using pip:: pip install nested-lookup -or easy_install:: - - easy_install nested-lookup - or install from source using:: - git clone https://github.com/russellballestrini/nested-lookup.git + git clone ssh://git@git.unturf.com:2222/python/nested-lookup.git cd nested-lookup pip install . diff --git a/setup.py b/setup.py index 5bb2d0a..01b6e84 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ print(requirements()) setup( name="nested-lookup", - version="0.2.24", + version="0.2.25", description="Python functions for working with deeply nested documents (lists and dicts) ", keywords="nested document dictionary dict list lookup schema json xml yaml", long_description=open("README.rst").read(), @@ -52,5 +52,5 @@ setup( # build package: # pip install twine -# python setup.py sdist bdist_egg +# python setup.py sdist # twine upload dist/*