From fa40cf6854a0ed66225aa0e804fa32123c747c94 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 10 Mar 2020 13:48:05 +0100 Subject: Updated Python dependencies. --- README.md | 3 +-- newspipe/crawler/default_crawler.py | 2 +- newspipe/lib/data.py | 2 +- newspipe/lib/misc_utils.py | 2 +- newspipe/models/__init__.py | 2 +- newspipe/models/article.py | 2 +- newspipe/models/bookmark.py | 2 +- newspipe/models/feed.py | 2 +- newspipe/models/role.py | 2 +- newspipe/models/user.py | 2 +- newspipe/notifications/emails.py | 2 +- newspipe/notifications/notifications.py | 2 +- newspipe/static/js/articles.js | 2 +- newspipe/web/forms.py | 2 +- newspipe/web/views/bookmark.py | 2 +- poetry.lock | 8 ++++---- pyproject.toml | 2 +- runserver.py | 2 +- 18 files changed, 21 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index faa3e455..0db16e93 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ ## Presentation -[Newspipe](https://git.sr.ht/~cedric/newspipe) is a web-based news -aggregator and reader. +[Newspipe](https://git.sr.ht/~cedric/newspipe) is a web news aggregator. Newspipe is written in Python. The core technologies are [Flask](http://flask.pocoo.org), diff --git a/newspipe/crawler/default_crawler.py b/newspipe/crawler/default_crawler.py index c12aad0d..00db49b2 100644 --- a/newspipe/crawler/default_crawler.py +++ b/newspipe/crawler/default_crawler.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 - -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/lib/data.py b/newspipe/lib/data.py index dd7a0503..b27b5d80 100644 --- a/newspipe/lib/data.py +++ b/newspipe/lib/data.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/lib/misc_utils.py b/newspipe/lib/misc_utils.py index cfe2b093..a5814aa3 100755 --- a/newspipe/lib/misc_utils.py +++ b/newspipe/lib/misc_utils.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/models/__init__.py b/newspipe/models/__init__.py index a58a7ad5..3fd7569c 100644 --- a/newspipe/models/__init__.py +++ b/newspipe/models/__init__.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/models/article.py b/newspipe/models/article.py index ecc2352b..0a747a30 100644 --- a/newspipe/models/article.py +++ b/newspipe/models/article.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/models/bookmark.py b/newspipe/models/bookmark.py index c3bc2dea..93158bbd 100644 --- a/newspipe/models/bookmark.py +++ b/newspipe/models/bookmark.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/models/feed.py b/newspipe/models/feed.py index fc88c17f..a84553bf 100644 --- a/newspipe/models/feed.py +++ b/newspipe/models/feed.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/models/role.py b/newspipe/models/role.py index 628467c0..3f02c009 100644 --- a/newspipe/models/role.py +++ b/newspipe/models/role.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/models/user.py b/newspipe/models/user.py index 142536fe..ffd320db 100644 --- a/newspipe/models/user.py +++ b/newspipe/models/user.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/notifications/emails.py b/newspipe/notifications/emails.py index 8093b655..31eceaeb 100644 --- a/newspipe/notifications/emails.py +++ b/newspipe/notifications/emails.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/notifications/notifications.py b/newspipe/notifications/notifications.py index f5421e59..547ad216 100644 --- a/newspipe/notifications/notifications.py +++ b/newspipe/notifications/notifications.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/static/js/articles.js b/newspipe/static/js/articles.js index de579532..6b272cf3 100644 --- a/newspipe/static/js/articles.js +++ b/newspipe/static/js/articles.js @@ -1,5 +1,5 @@ /*! -* Newspipe - A Web based news aggregator. +* Newspipe - A web news aggregator. * Copyright (C) 2010-2020 Cédric Bonhomme - https://cedricbonhomme.org * * For more information: https://git.sr.ht/~cedric/newspipe diff --git a/newspipe/web/forms.py b/newspipe/web/forms.py index 540b2723..2efbc9a6 100644 --- a/newspipe/web/forms.py +++ b/newspipe/web/forms.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: http://gitlab.com/newspipe/newspipe diff --git a/newspipe/web/views/bookmark.py b/newspipe/web/views/bookmark.py index ea49b3c8..6d143875 100644 --- a/newspipe/web/views/bookmark.py +++ b/newspipe/web/views/bookmark.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe diff --git a/poetry.lock b/poetry.lock index e7890909..3dbac11a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -115,8 +115,8 @@ category = "main" description = "Composable command line interface toolkit" name = "click" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" -version = "7.0" +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +version = "7.1.1" [[package]] category = "main" @@ -580,8 +580,8 @@ chardet = [ {file = "chardet-3.0.4.tar.gz", hash = "sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae"}, ] click = [ - {file = "Click-7.0-py2.py3-none-any.whl", hash = "sha256:2335065e6395b9e67ca716de5f7526736bfa6ceead690adf616d925bdc622b13"}, - {file = "Click-7.0.tar.gz", hash = "sha256:5b94b49521f6456670fdb30cd82a4eca9412788a93fa6dd6df72c94d5a8ff2d7"}, + {file = "click-7.1.1-py2.py3-none-any.whl", hash = "sha256:e345d143d80bf5ee7534056164e5e112ea5e22716bbb1ce727941f4c8b471b9a"}, + {file = "click-7.1.1.tar.gz", hash = "sha256:8a18b4ea89d8820c5d0c7da8a64b2c324b4dabb695804dbfea19b9be9d88c0cc"}, ] feedparser = [ {file = "feedparser-5.2.1.tar.bz2", hash = "sha256:ce875495c90ebd74b179855449040003a1beb40cd13d5f037a0654251e260b02"}, diff --git a/pyproject.toml b/pyproject.toml index 3047e33f..aa971819 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "newspipe" version = "9.0.0" -description = "Newspipe is a web-based news aggregator and reader." +description = "Newspipe is a web news aggregator." authors = ["Cédric Bonhomme "] license = "AGPL-3.0-or-later" diff --git a/runserver.py b/runserver.py index 6844aa85..0afdc3ed 100755 --- a/runserver.py +++ b/runserver.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -# Newspipe - A Web based news aggregator. +# Newspipe - A web news aggregator. # Copyright (C) 2010-2020 Cédric Bonhomme - https://www.cedricbonhomme.org # # For more information: https://git.sr.ht/~cedric/newspipe -- cgit