misc improvements
continuous-integration/drone/push Build encountered an error Details
continuous-integration/drone Build is passing Details

bump
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
name: python
host_aliases:
- ip: 192.168.0.210
hostnames:
- git.fqserv.eu
steps:
- name: test
image: python:latest

View File

@ -5,7 +5,7 @@ ENV TZ=Europe/Paris
RUN apk add --no-cache --update tzdata supercronic && \
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 && \
echo "*/15 * * * * tenkan --feedsfile /etc/feeds.json --config /etc/tenkan.conf update" > /crontab

View File

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

View File

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