misc improvements
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone Build is passing

This commit is contained in:
Quentin Ferrand 2022-05-01 18:29:26 +02:00
parent 363e436f25
commit a2683b9263
4 changed files with 3 additions and 8 deletions

View file

@ -3,11 +3,6 @@ kind: pipeline
type: kubernetes type: kubernetes
name: python name: python
host_aliases:
- ip: 192.168.0.210
hostnames:
- git.fqserv.eu
steps: steps:
- name: test - name: test
image: python:latest image: python:latest

View file

@ -5,7 +5,7 @@ ENV TZ=Europe/Paris
RUN apk add --no-cache --update tzdata supercronic && \ RUN apk add --no-cache --update tzdata supercronic && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \ ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && \
pip install -q tenkan && \ pip install --no-cache-dir -q tenkan && \
mkdir -p /data/rss && \ mkdir -p /data/rss && \
echo "*/15 * * * * tenkan --feedsfile /etc/feeds.json --config /etc/tenkan.conf update" > /crontab echo "*/15 * * * * tenkan --feedsfile /etc/feeds.json --config /etc/tenkan.conf update" > /crontab

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "tenkan" name = "tenkan"
version = "0.2.2" version = "0.2.3"
description = "RSS/atom feed converter from html to gemini" description = "RSS/atom feed converter from html to gemini"
authors = ["Quentin Ferrand <quentin.ferrand@protonmail.com>"] authors = ["Quentin Ferrand <quentin.ferrand@protonmail.com>"]
readme = 'README.md' readme = 'README.md'

View file

@ -18,7 +18,7 @@ here = os.path.abspath(os.path.dirname(__file__))
setup( setup(
name='tenkan', name='tenkan',
version='0.2.2', version='0.2.3',
long_description=open('README.md').read(), long_description=open('README.md').read(),
description='RSS/atom feed converter from html to gemini', description='RSS/atom feed converter from html to gemini',
long_description_content_type='text/markdown', long_description_content_type='text/markdown',