Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 2866e01

Browse files
committed
Merge branch 'release-v0.7.3'
2 parents 7d5ff0d + 270a13a commit 2866e01

36 files changed

+448
-13266
lines changed

.gitlab-ci.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: python:3.10
1+
image: python:3.11
22

33
stages:
44
- lint
@@ -15,19 +15,15 @@ lint:
1515
stage: lint
1616
extends: .python
1717
script:
18-
- pytest --flake8 --isort --black -m "flake8 or isort or black" twootfeed
18+
- pytest --isort --black -m "isort or black" twootfeed
19+
- flake8 twootfeed
1920

2021
type-check:
2122
stage: lint
2223
extends: .python
2324
script:
2425
- mypy twootfeed
2526

26-
python-3.7:
27-
stage: tests
28-
extends: .python
29-
image: python:3.7
30-
3127
python-3.8:
3228
stage: tests
3329
extends: .python
@@ -39,6 +35,11 @@ python-3.9:
3935
image: python:3.9
4036

4137
python-3.10:
38+
stage: tests
39+
extends: .python
40+
image: python:3.10
41+
42+
python-3.11:
4243
stage: tests
4344
before_script:
4445
- pip install -e .[test]

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change log
22

3+
## Version 0.7.3 (2023/06/14)
4+
5+
No new features, only dependencies update
6+
7+
**Note**: Minimum version of Python is now 3.8.1.
8+
9+
310
## Version 0.7.2 (2022/08/27)
411

512
#### Bugs Fixed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ install: venv
3131
test -e $(FLASK_APP)/config.yml || cp $(FLASK_APP)/config.example.yml $(FLASK_APP)/config.yml
3232

3333
lint:
34-
$(PYTEST) --flake8 --isort --black -m "flake8 or isort or black" $(FLASK_APP)
34+
$(PYTEST) --isort --black -m "isort or black" $(FLASK_APP)
35+
echo 'Running flake8...'
36+
$(FLAKE8) $(FLASK_APP)
3537

3638
lint-fix:
3739
$(BLACK) $(FLASK_APP)

Makefile.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ PYTEST = $(VENV)/bin/py.test
2020
GUNICORN = $(VENV)/bin/gunicorn
2121
BLACK = $(VENV)/bin/black
2222
MYPY = $(VENV)/bin/mypy
23+
FLAKE8 = $(VENV)/bin/flake8
2324

2425
#Sphinx Docs
2526
SPHINXOPTS ?=

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
**generate an RSS feed from parsed Twitter or Mastodon search and Mastodon bookmarks/favorites/home timeline**
33

44
[![PyPI version](https://img.shields.io/pypi/v/twootfeed.svg)](https://pypi.org/project/twootfeed/)
5-
[![Downloads](https://pepy.tech/badge/twootfeed)](https://pepy.tech/project/twootfeed)
6-
[![Python Version](https://img.shields.io/badge/python-3.7+-brightgreen.svg)](https://python.org)
7-
[![Flask Version](https://img.shields.io/badge/flask-2.2-brightgreen.svg)](http://flask.pocoo.org/)
5+
[![Python Version](https://img.shields.io/badge/python-3.8+-brightgreen.svg)](https://python.org)
6+
[![Flask Version](https://img.shields.io/badge/flask-2.3-brightgreen.svg)](http://flask.pocoo.org/)
87
[![code style: black](https://img.shields.io/badge/code%20style-black-black)](https://black.readthedocs.io/en/stable/)
98
[![type check: mypy](https://img.shields.io/badge/type%20check-mypy-blue)](http://mypy-lang.org/)
109
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/14d1c00121c04cd2b81453c597639ca6)](https://www.codacy.com/app/SamR1/python-twootfeed)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.2
1+
0.7.3

docs/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 7075c05ace5d0aeb460624acaa55bf96
3+
config: 6a0d8fb1b304246f1219988c1a61d67e
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_sources/changelog.md.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change log
22

3+
## Version 0.7.3 (2023/06/14)
4+
5+
No new features, only dependencies update
6+
7+
**Note**: Minimum version of Python is now 3.8.1.
8+
9+
310
## Version 0.7.2 (2022/08/27)
411

512
#### Bugs Fixed

docs/_sources/installation.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Installation and usage
44
Requirements
55
~~~~~~~~~~~~
66

7-
- Python 3.7+
7+
- Python 3.8+
88
- API keys Twitter and/or Mastodon
99

1010

docs/_static/_sphinx_javascript_frameworks_compat.js

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,9 @@
1-
/*
2-
* _sphinx_javascript_frameworks_compat.js
3-
* ~~~~~~~~~~
4-
*
5-
* Compatability shim for jQuery and underscores.js.
6-
*
7-
* WILL BE REMOVED IN Sphinx 6.0
8-
* xref RemovedInSphinx60Warning
1+
/* Compatability shim for jQuery and underscores.js.
92
*
3+
* Copyright Sphinx contributors
4+
* Released under the two clause BSD licence
105
*/
116

12-
/**
13-
* select a different prefix for underscore
14-
*/
15-
$u = _.noConflict();
16-
17-
187
/**
198
* small helper function to urldecode strings
209
*

0 commit comments

Comments
 (0)