Merge pull request #202 from aceisace/hotfix/feedparser-dependency

Hotfix/feedparser dependency
This commit is contained in:
Ace 2021-11-11 13:43:09 +01:00 committed by GitHub
commit 068c9a3ac8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -9,10 +9,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Set up Python 3.7 - name: Set up Python 3.9.8
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: 3.7 python-version: 3.9.8
- name: Clone repo - name: Clone repo
run: | run: |

View File

@ -2,7 +2,7 @@ pyowm==3.1.1 # weather
Pillow>=7.1.1 # imaging Pillow>=7.1.1 # imaging
icalendar==4.0.6 # iCalendar parsing icalendar==4.0.6 # iCalendar parsing
recurring-ical-events==0.1.17b0 # parse recurring events recurring-ical-events==0.1.17b0 # parse recurring events
feedparser==5.2.1 # parse RSS-feeds feedparser==6.0.8 # parse RSS-feeds
numpy>=1.18.2 # image pre-processing #pre-installed on Raspbian, omitting numpy>=1.18.2 # image pre-processing #pre-installed on Raspbian, omitting
arrow==0.17.0 # time operations arrow==0.17.0 # time operations
Flask==1.1.2 # webserver Flask==1.1.2 # webserver

View File

@ -17,7 +17,7 @@ __install_requires__ = ['pyowm==3.1.1', # weather
'Pillow>=7.1.1' , # imaging 'Pillow>=7.1.1' , # imaging
'icalendar==4.0.6', # iCalendar parsing 'icalendar==4.0.6', # iCalendar parsing
'recurring-ical-events==0.1.17b0',# parse recurring events 'recurring-ical-events==0.1.17b0',# parse recurring events
'feedparser==5.2.1', # RSS-feeds 'feedparser==6.0.8', # RSS-feeds
# 'numpy>=1.18.2', # image pre-processing -> removed for issues with rpi os # 'numpy>=1.18.2', # image pre-processing -> removed for issues with rpi os
'arrow==0.17.0', # time handling 'arrow==0.17.0', # time handling
'Flask==1.1.2', # webserver 'Flask==1.1.2', # webserver