Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python_version }}
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include *.md
include LICENSE
include requirements*.txt
include requirements*.txt
include osctiny/py.typed
Empty file added osctiny/py.typed
Empty file.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _filter(requires):
setup(
name='osc-tiny',
version='0.11.0',
description='Client API for openSUSE BuildService',
description='Client API for the Open Build Service',
long_description=long_description,
long_description_content_type="text/markdown",
author='Andreas Hasenkopf',
Expand All @@ -36,13 +36,13 @@ def _filter(requires):
maintainer_email='maintenance-automation-team@suse.de',
url='https://github.com/SUSE/osc-tiny',
packages=find_packages(),
license='MIT',
package_data={"osctiny": ["py.typed"]},
license_expression='MIT',
install_requires=get_requires(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
Expand All @@ -51,5 +51,7 @@ def _filter(requires):
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
)
Loading