diff --git a/README.md b/README.md index 8e54eaa..c1c41d0 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Flask-Whooshee [![Build Status](https://github.com/fedora-copr/flask-whooshee/actions/workflows/main.yml/badge.svg)](https://github.com/fedora-copr/flask-whooshee/actions) [![PyPI Version](https://img.shields.io/pypi/v/flask-whooshee.svg)](https://pypi.python.org/pypi/flask-whooshee) -[![License](https://img.shields.io/badge/license-BSD-yellow.svg)](https://github.com/bkabrda/flask-whooshee) +[![License](https://img.shields.io/badge/license-BSD-yellow.svg)](https://github.com/fedora-copr/flask-whooshee) *Adds Whoosh integration to Flask-SQLAlchemy.* @@ -68,5 +68,5 @@ Links ===== * [Documentation](https://flask-whooshee.readthedocs.io) -* [Source Code](https://github.com/bkabrda/flask-whooshee) -* [Issues](https://github.com/bkabrda/flask-whooshee/issues) +* [Source Code](https://github.com/fedora-copr/flask-whooshee) +* [Issues](https://github.com/fedora-copr/flask-whooshee/issues) diff --git a/docs/_templates/sidebarintro.html b/docs/_templates/sidebarintro.html index 496316e..819d87b 100644 --- a/docs/_templates/sidebarintro.html +++ b/docs/_templates/sidebarintro.html @@ -1,5 +1,5 @@

Useful Links

diff --git a/docs/conf.py b/docs/conf.py index cdfaba0..1e7cb00 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -136,11 +136,11 @@ 'description': 'Adds Whoosh Integration to Flask-SQLAlchemy.', 'github_button': False, 'github_banner': True, - 'github_user': 'bkabrda', + 'github_user': 'fedora-copr', 'github_repo': 'flask-whooshee', 'extra_nav_links': { - 'Flask-Whooshee @ PyPI': 'https://pypi.python.org/pypi/flask-whooshee', - 'Flask-Whooshee @ GitHub': 'https://github.com/bkabrda/flask-whooshee', + 'Flask-Whooshee @ PyPI': 'https://pypi.org/project/flask-whooshee', + 'Flask-Whooshee @ GitHub': 'https://github.com/fedora-copr/flask-whooshee', } } @@ -366,5 +366,5 @@ intersphinx_mapping = { 'https://docs.python.org/': None, 'http://whoosh.readthedocs.io/en/latest/': None, - 'http://flask-sqlalchemy.pocoo.org/latest/': None + 'https://flask-sqlalchemy.palletsprojects.com/': None } diff --git a/fedora/python-flask-whooshee.spec b/fedora/python-flask-whooshee.spec index 578b116..bb85648 100644 --- a/fedora/python-flask-whooshee.spec +++ b/fedora/python-flask-whooshee.spec @@ -8,7 +8,7 @@ Summary: Whoosh integration License: BSD-3-Clause URL: https://github.com/fedora-copr/flask-whooshee Source0: https://pypi.python.org/packages/source/f/%{mod_name}/%{mod_name}-%{version}.tar.gz -# https://github.com/bkabrda/flask-whooshee/pull/19 +# https://github.com/fedora-copr/flask-whooshee/pull/19 BuildArch: noarch diff --git a/flask_whooshee.py b/flask_whooshee.py index 8a219c8..d61d4a8 100644 --- a/flask_whooshee.py +++ b/flask_whooshee.py @@ -35,7 +35,7 @@ DELETE_KWD = 'delete' -__version__ = '0.9.0' +__version__ = '0.9.1' def _get_app(obj): diff --git a/setup.py b/setup.py index 7cf6dcc..40aa7d6 100755 --- a/setup.py +++ b/setup.py @@ -51,8 +51,8 @@ class Entry(db.Model): ````` * `Documentation `_ -* `Source Code `_ -* `Issues `_ +* `Source Code `_ +* `Issues `_ """ from setuptools import setup from flask_whooshee import __version__ @@ -66,7 +66,7 @@ class Entry(db.Model): keywords='flask, sqlalchemy, whoosh', author='Bohuslav "Slavek" Kabrda', author_email='bkabrda@redhat.com', - url='https://github.com/bkabrda/flask-whooshee', + url='https://github.com/fedora-copr/flask-whooshee', license='BSD-3-Clause', py_modules=['flask_whooshee'], test_suite='test', diff --git a/test.py b/test.py index 08ed554..8a80326 100644 --- a/test.py +++ b/test.py @@ -354,7 +354,7 @@ def test_delete(self): self.assertEqual(len(found), 0) # make sure that the entry has actually been deleted from the whoosh index - # https://github.com/bkabrda/flask-whooshee/pull/26#issuecomment-257549715 + # https://github.com/fedora-copr/flask-whooshee/pull/26#issuecomment-257549715 whoosheer = next(w for w in self.wh.whoosheers if set(w.models) == set([self.Entry])) self.assertEqual(len(whoosheer.search('blah blah blah')), 0)