Merge pull request #141 from jazzband/chore/release-0.1.29

chore: prepare next release
master v0.1.29
Martin Eigenmann 2024-09-09 15:56:30 +02:00 zatwierdzone przez GitHub
commit 60ffa6345c
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
4 zmienionych plików z 12 dodań i 35 usunięć

Wyświetl plik

@ -1,30 +0,0 @@
sudo: false
language: python
python:
- "3.6"
install:
- pip install -r requirements.txt
# command to run tests
script:
- coverage run test.py
after_success:
- codecov
- coverage report -m
deploy:
skip_cleanup: true
provider: pypi
user: "irgang"
password:
secure: "mPYhrmzvEHmC41QRqjHGarvjOOlA4nTcEcz+l3Wn6D02arTJOidOVTRVquEn21+z02k2FU3rMO0ASOKuQk6ThEPBLQTKHp596/IEeEXmFRjrsw4IMHukTssYwoBu92ss9l7T4YLoztVL9kUAS3i70quv7frAmJMyMvU/odpjdKt+2gpXbp3TjdlPJ/uPzSVOl8cdCBGF4KFk/tEkBquWDRJp8pJx+V7uBeRLeq6VSTKhRxAq+9nRt89MG0im
nTP/AAujx2VguoVrkHcB3m92OxkHRdOOjjMZz2FoqjCQNRI8V//U98KKniirfnYdaUc8zk/ohv/JjUPAw4DwUUDOMpCzCVmdxDavjtvQIh7CCXRj9sbTtL12mkP5yae0qKbBXz/rOCnCNODlpKLKl199fDHOkjJrnOn+PDbO+nkRXa4LD/dCaXpu55vQnrC/PmY1GOQWT4OiFa6gCal+RDy9Dlykwtz3tE+R3+61bQfB7pzRtYsovFS40t4lnLU9SfbDS
yLMng+mE8bKvhAgotuPt2MSKV6NNbmJXmHrZig+YO8N70B8C+frwM/Wozvk7Pz3nydeUBL8v0wBzynsvco6kVs0g6NhszgRi7d16cOZ8G3vN6bZVa4xxkWIzSPbKy3hMg8Z94pxTrVl/o5QY67hIf7mCvlOJ5o6xo8q0UDlSdg="
on:
branch: master
tags: true
distributions: "sdist"

Wyświetl plik

@ -23,7 +23,7 @@ copyright = "2024, jazzband"
author = "Martin Eigenmann"
# The full version, including alpha/beta/rc tags
release = "0.1.28"
release = "0.1.29"
# -- General configuration ---------------------------------------------------

Wyświetl plik

@ -1,6 +1,6 @@
[tool.poetry]
name = "icalevents"
version = "0.1.28"
version = "0.1.29"
description = "Simple Python 3 library to download, parse and query iCal sources."
authors = ["Martin Eigenmann <github@eigenmannmartin.ch>", "Thomas Irgang <thomas@irgang.eu>",
"Alexander Hultnér <ahultner+github@gmail.com>"]

Wyświetl plik

@ -1,7 +1,7 @@
#!/usr/bin/env python3
from setuptools import setup
version = "0.1.27"
version = "0.1.29"
setup(
name="icalevents",
@ -14,8 +14,8 @@ setup(
],
version=version,
description="iCal downloader and parser",
author="Thomas Irgang",
author_email="thomas@irgang-la.de",
author="Martin Eigenmann",
author_email="",
url="https://github.com/jazzband/icalevents",
download_url="https://github.com/jazzband/icalevents/archive/v"
+ version
@ -32,6 +32,13 @@ setup(
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],