upgrade to python 3.9 runtime and feedparser 6.0.2

flask
Ryan Barrett 2021-03-06 08:03:36 -08:00
rodzic 47831006f3
commit 06cd35abba
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6BE31FDF4776E9D4
4 zmienionych plików z 6 dodań i 7 usunięć

Wyświetl plik

@ -109,7 +109,8 @@ Here are in progress notes on how I'm testing interoperability with various fede
* [snarfed@mastodon.technology](https://mastodon.technology/@snarfed)
* Example post: [HTML](https://mastodon.technology/@snarfed/2604611), [Atom](https://mastodon.technology/users/snarfed/updates/73978.atom)
* Profile HTML/Atom have Salmon link rel. Individual post HTML/Atom don't. `author.email` is snarfed@mastodon.technology
* [Pleroma](https://pleroma.social/)
* [snarfed@cawfee.club](https://cawfee.club/snarfed)
Stats
---

Wyświetl plik

@ -2,9 +2,7 @@
# application: bridgy-federated
# pycrypto doesn't support python 3.8 (due to time.clock). should switch to
# pycryptodome.
runtime: python37
runtime: python39
# default_expiration: 1h

Wyświetl plik

@ -3,7 +3,7 @@ git+https://github.com/snarfed/httpsig.git@HTTPSignatureAuth-sign-header#egg=htt
git+https://github.com/snarfed/webmention-tools.git@python3#egg=webmentiontools
git+https://github.com/snarfed/oauth-dropins.git@master#egg=oauth_dropins
git+https://github.com/snarfed/granary.git@master#egg=granary
feedparser~=5.2
feedparser~=6.0.2
google-cloud-logging~=1.15
gunicorn~=20.0
mf2util~=0.5.0

Wyświetl plik

@ -775,8 +775,8 @@ class WebmentionTest(testutil.TestCase):
'ref': 'tag:fed.brid.gy,2017-08-22:orig-post',
}, entry['thr_in-reply-to'])
self.assertEqual("""\
<a class="u-in-reply-to" href="http://not/fediverse"></a><br></br>
<a class="u-in-reply-to" href="http://orig/post">foo bar</a><br></br>
<a class="u-in-reply-to" href="http://not/fediverse"></a><br />
<a class="u-in-reply-to" href="http://orig/post">foo bar</a><br />
<a href="http://localhost/"></a>""",
entry.content[0]['value'])