From 6faca1cd29e4bf6ad97bac3fcb4c855557916772 Mon Sep 17 00:00:00 2001 From: David Lord Date: Sun, 17 Jul 2022 10:19:59 -0700 Subject: [PATCH 1/4] update gitignore --- .gitignore | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 3c90d3f..1ca9c16 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,13 @@ -*.py? -*$py.class -.coverage -.tox -build -dist -MANIFEST -docs/_build +/.idea/ +/.vscode/ +/venv*/ +/.venv*/ +/env*/ +/.env*/ +__pycache__/ +*.pyc +/.pytest_cache/ +/.tox/ +/*.egg-info/ +/dist/ +/docs/_build/ From a1c28db398b13abf36ccf1fc04c6d8f6a2de9097 Mon Sep 17 00:00:00 2001 From: David Lord Date: Sun, 17 Jul 2022 10:20:18 -0700 Subject: [PATCH 2/4] add readme content type --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 7699c5f..0d640e4 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ description='Fast, simple object-to-object and broadcast signaling', keywords='signal emit events broadcast', long_description=readme, + long_description_content_type="text/x-rst", license='MIT License', url='https://blinker.readthedocs.io', project_urls={ From 4dcf0bb985fff442ef368ac0366c39e34e359d5b Mon Sep 17 00:00:00 2001 From: David Lord Date: Sun, 17 Jul 2022 10:34:59 -0700 Subject: [PATCH 3/4] add maintainer metadata --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 0d640e4..462ccd3 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,8 @@ packages=['blinker'], author='Jason Kirtland', author_email='jek@discorporate.us', + maintainer="Pallets Ecosystem", + maintainer_email="contact@palletsprojects.com", description='Fast, simple object-to-object and broadcast signaling', keywords='signal emit events broadcast', long_description=readme, From a45816274eea91428a94184f0e2ffc2f802eeeac Mon Sep 17 00:00:00 2001 From: David Lord Date: Sun, 17 Jul 2022 10:31:13 -0700 Subject: [PATCH 4/4] release version 1.5 --- CHANGES.rst | 2 +- blinker/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d123b19..d278ca0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ Version 1.5 ----------- -Unreleased +Released 2022-07-17 - Support Python >= 3.7 and PyPy. Python 2, Python < 3.7, and Jython may continue to work, but the next release will make incompatible diff --git a/blinker/__init__.py b/blinker/__init__.py index 57e1be8..bed55ca 100644 --- a/blinker/__init__.py +++ b/blinker/__init__.py @@ -19,4 +19,4 @@ ] -__version__ = '1.5dev' +__version__ = '1.5'