dev-python/openai: drop 0.27.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 18:12:59 +02:00
parent 99b6e1d6c5
commit ee5d45d78f
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 3 additions and 38 deletions

View File

@ -1,5 +1,3 @@
DIST openai-0.27.2.tar.gz 57122 BLAKE2B 3b6294ca98f279ef0fb51ee1ae761718a01a728c9c29677f4bb9b0731b61ad0a818a94bafe75425f259c12e72e86d4b3b1ea07b44f8aad6a47cc21f5df206bb0 SHA512 1d648315a8fc04650d11cc3c90e96f0062d276cb7dd1fd132b03f0205675af7ed7df3c1d54384b0f2d4f51d30d387392fc96133f190057feb689026b066ee700
DIST openai-1.3.8.tar.gz 122136 BLAKE2B 24c2b161bd941cf71ac26d8473af9d7ecd0fffb3757ca0f5644a1862d9a71eb07ed64c344940e85fd9e12edd97980f2d41f67cfb7ad8b13f1fb536ee4e41b26b SHA512 b891b03f1cabd8906f8b82a6fb081c8a8245e1f79c0615fd1fec9157520e68d60231a4836928a455cc01b4b05cf5a43ad72ad026104beade130bee579be179d4
EBUILD openai-0.27.2.ebuild 713 BLAKE2B 0161a2a44d296da15a19349a3ea0f2e4440910ec92838ca62b52e98715e1d914a656d64715a28999daf9262830a0624a54edf0fe995845a29d200e8c966a97d0 SHA512 b677fdd85657dce6509e111fbb825c9c7ae2b123c97219f1a3d5fae5f12bd4e80b698a3953725cc190c64087a97b6638679b0858ed2971c91a6145bc860da9b4
EBUILD openai-1.3.8.ebuild 871 BLAKE2B 04d37080c01bf02f2595bd1ad50d1ce51e460f6c9027813a6321cca58ad5baca33521aaa8ee46882b16a48b6bf883f952f479a6666138cea5a10d18229e06fed SHA512 99653d6b6cf774f004d15b0e044182a9b773c5d8b563a84d0cc767ab1177e74f3a9a3972579e6c98f378455d953dab04c7513560cd0ff12afd7c11579470486d
EBUILD openai-1.3.8.ebuild 871 BLAKE2B e082d863e4e8f9f5f3551f4f460d7eb1f924767fb0b7ca6d221d6290a37194da408cad19581be4c56136e310d0a9b4f58c190d6b89cfb244a8b2e1c67cf7875f SHA512 e5155b2b81c6b857483ed6ff2acc32d4d26280fc48f5e42b69c7def7a01220999958a71ae89f567be86d5ea3d720a7f5c66bb2b2b4997b12667adf8ea9f9cebb
MISC metadata.xml 505 BLAKE2B a5245462c62a7fa7e51153dd4040ed8180553474bd9ea584f94a0724d61d8965f0109375bc6d39fe2480c89f670ec08616311ab9320f53218200f1f0f6c39932 SHA512 33fa7a68d794e8badc728091a30fed602d0305c5d6fc72dde8ccf04271c1ea271d16e021aebafc24baa6e20f6856b5302eedabfa39d86258fd2254287c007159

View File

@ -1,33 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python client library for the OpenAI API"
HOMEPAGE="https://github.com/openai/openai-python https://pypi.org/project/openai/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/tqdm[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=hatchling
inherit distutils-r1 pypi