-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use stored cookie from `osc`, if it exists * Dropped support for `CacheControl` * Added support for Python 3.12 * Updated meta info (due to repo move)
- Loading branch information
1 parent
281119d
commit 6e7f135
Showing
8 changed files
with
51 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,15 @@ def _filter(requires): | |
|
||
setup( | ||
name='osc-tiny', | ||
version='0.7.12', | ||
version='0.8.0', | ||
description='Client API for openSUSE BuildService', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author='Andreas Hasenkopf', | ||
author_email='[email protected]', | ||
url='http://github.com/crazyscientist/osc-tiny', | ||
download_url='http://github.com/crazyscientist/osc-tiny/tarball/master', | ||
maintainer='SUSE Maintenance Automation Engineering team', | ||
maintainer_email='[email protected]', | ||
url='https://github.com/SUSE/osc-tiny', | ||
packages=find_packages(), | ||
license='MIT', | ||
install_requires=get_requires(), | ||
|
@@ -49,5 +50,6 @@ def _filter(requires): | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
) |