From 8b3f512d213aa3493da83b1a7c02e7f96ee1b6be Mon Sep 17 00:00:00 2001 From: Martin Eigenmann Date: Mon, 9 Sep 2024 15:48:08 +0200 Subject: [PATCH] chore: prepare next release --- .travis.yml | 30 ------------------------------ docs/conf.py | 2 +- pyproject.toml | 2 +- setup.py | 13 ++++++++++--- 4 files changed, 12 insertions(+), 35 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 003c787..0000000 --- a/.travis.yml +++ /dev/null @@ -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" diff --git a/docs/conf.py b/docs/conf.py index 5538316..2837a56 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 7993e06..ac149ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ", "Thomas Irgang ", "Alexander Hultnér "] diff --git a/setup.py b/setup.py index 8cfdd14..88efc19 100755 --- a/setup.py +++ b/setup.py @@ -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", ],