kopia lustrzana https://github.com/jazzband/icalevents
chore: prepare next release
rodzic
d75c66d0d1
commit
8b3f512d21
30
.travis.yml
30
.travis.yml
|
@ -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"
|
|
|
@ -23,7 +23,7 @@ copyright = "2024, jazzband"
|
||||||
author = "Martin Eigenmann"
|
author = "Martin Eigenmann"
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
release = "0.1.28"
|
release = "0.1.29"
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "icalevents"
|
name = "icalevents"
|
||||||
version = "0.1.28"
|
version = "0.1.29"
|
||||||
description = "Simple Python 3 library to download, parse and query iCal sources."
|
description = "Simple Python 3 library to download, parse and query iCal sources."
|
||||||
authors = ["Martin Eigenmann <github@eigenmannmartin.ch>", "Thomas Irgang <thomas@irgang.eu>",
|
authors = ["Martin Eigenmann <github@eigenmannmartin.ch>", "Thomas Irgang <thomas@irgang.eu>",
|
||||||
"Alexander Hultnér <ahultner+github@gmail.com>"]
|
"Alexander Hultnér <ahultner+github@gmail.com>"]
|
||||||
|
|
13
setup.py
13
setup.py
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
version = "0.1.27"
|
version = "0.1.29"
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="icalevents",
|
name="icalevents",
|
||||||
|
@ -14,8 +14,8 @@ setup(
|
||||||
],
|
],
|
||||||
version=version,
|
version=version,
|
||||||
description="iCal downloader and parser",
|
description="iCal downloader and parser",
|
||||||
author="Thomas Irgang",
|
author="Martin Eigenmann",
|
||||||
author_email="thomas@irgang-la.de",
|
author_email="",
|
||||||
url="https://github.com/jazzband/icalevents",
|
url="https://github.com/jazzband/icalevents",
|
||||||
download_url="https://github.com/jazzband/icalevents/archive/v"
|
download_url="https://github.com/jazzband/icalevents/archive/v"
|
||||||
+ version
|
+ version
|
||||||
|
@ -32,6 +32,13 @@ setup(
|
||||||
"Programming Language :: Python :: 3.3",
|
"Programming Language :: Python :: 3.3",
|
||||||
"Programming Language :: Python :: 3.4",
|
"Programming Language :: Python :: 3.4",
|
||||||
"Programming Language :: Python :: 3.5",
|
"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",
|
"Operating System :: OS Independent",
|
||||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
],
|
],
|
||||||
|
|
Ładowanie…
Reference in New Issue