diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2023-09-30 06:20:21 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2023-09-30 06:20:21 +0000 |
| commit | db0b5bc27fe6db0fb5c625d6d1ba368339698a7b (patch) | |
| tree | 99eaefa7d208ca164fea5643a785d46bd83e6e34 /dev-python/seaborn | |
| parent | 8e21e9a7216916de4a5ea6957f62ffbd91656b76 (diff) | |
| download | baldeagleos-repo-db0b5bc27fe6db0fb5c625d6d1ba368339698a7b.tar.gz baldeagleos-repo-db0b5bc27fe6db0fb5c625d6d1ba368339698a7b.tar.xz baldeagleos-repo-db0b5bc27fe6db0fb5c625d6d1ba368339698a7b.zip | |
Adding metadata
Diffstat (limited to 'dev-python/seaborn')
| -rw-r--r-- | dev-python/seaborn/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/seaborn/seaborn-0.13.0.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/seaborn/Manifest b/dev-python/seaborn/Manifest index 766f8abaca3c..986bdede51e9 100644 --- a/dev-python/seaborn/Manifest +++ b/dev-python/seaborn/Manifest @@ -1 +1,2 @@ DIST seaborn-0.12.2.tar.gz 1439798 BLAKE2B cf6903b1a2d27516bcafe46cabc81ea9fac80666394a6a82516630f9ac60afc7e9d31817e029cda9a08da04c0a37ce0244ad23acda16bca3283532ddb0fbdb71 SHA512 988a9922ee301b655911efa38905674b7dd15e7f7b157ad67f5befaeb02db492553f8bd6133b54d2dd7970b8dbbfd92d81d1faea3fa618247ebcaeb98620a060 +DIST seaborn-0.13.0.tar.gz 1455480 BLAKE2B 9f7383715366889ffd80788f901c574d9330285da2098e5695e944f1c6b92d4e417163a82378dd75c03233fc6485158401a1aaa461f2fa8e71a4cbc3ebf957cb SHA512 d603e880c29e05ab68f86d285c5c5ee9cf2da1d45265ed609f7bc87650fe20e80c026af487f63f9492a268f51ba5bab0cae4fd8fdeaf28125d16d317f9c937c8 diff --git a/dev-python/seaborn/seaborn-0.13.0.ebuild b/dev-python/seaborn/seaborn-0.13.0.ebuild new file mode 100644 index 000000000000..a195bc7b6c0e --- /dev/null +++ b/dev-python/seaborn/seaborn-0.13.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{8,9,10,11} ) +inherit distutils-r1 multiprocessing pypi + +DESCRIPTION="Statistical data visualization" +HOMEPAGE="https://seaborn.pydata.org https://github.com/mwaskom/seaborn" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-python/matplotlib-3.3[${PYTHON_USEDEP}] + >=dev-python/numpy-1.20[${PYTHON_USEDEP}] + >=dev-python/pandas-1.2[${PYTHON_USEDEP}] + >=dev-python/statsmodels-0.12[${PYTHON_USEDEP}] + >=dev-python/scipy-1.7[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_test() { + cat > matplotlibrc <<- EOF || die + backend : Agg + EOF + + distutils-r1_src_test +} + +python_test() { + epytest -n "$(makeopts_jobs)" +} |
