diff options
author | 2022-06-03 07:27:57 +0100 | |
---|---|---|
committer | 2022-06-03 07:28:33 +0100 | |
commit | c818c56789749aec547a0df6d82e522b4146a87b (patch) | |
tree | c647c41eaad351ecc65eed708a53f730cac4ff45 /dev-python/plotly/files | |
parent | dev-ruby/rack: add 2.2.3.1 (diff) | |
download | gentoo-c818c56789749aec547a0df6d82e522b4146a87b.tar.gz gentoo-c818c56789749aec547a0df6d82e522b4146a87b.tar.bz2 gentoo-c818c56789749aec547a0df6d82e522b4146a87b.zip |
dev-python/plotly: add 5.8.0
Closes: https://bugs.gentoo.org/841002
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-python/plotly/files')
-rw-r--r-- | dev-python/plotly/files/plotly-5.8.0-fix-versioneer-import.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dev-python/plotly/files/plotly-5.8.0-fix-versioneer-import.patch b/dev-python/plotly/files/plotly-5.8.0-fix-versioneer-import.patch new file mode 100644 index 000000000000..4d0411a34c62 --- /dev/null +++ b/dev-python/plotly/files/plotly-5.8.0-fix-versioneer-import.patch @@ -0,0 +1,14 @@ +https://bugs.gentoo.org/841002 +https://github.com/dandi/dandi-cli/pull/998 +https://github.com/mgorny/gpep517/issues/1 +--- a/setup.py ++++ b/setup.py +@@ -11,7 +11,7 @@ from distutils import log + # ensure the current directory is on sys.path; so versioneer can be imported + # when pip uses PEP 517/518 build rules. + # https://github.com/python-versioneer/python-versioneer/issues/193 +-sys.path.append(os.path.dirname(__file__)) ++sys.path.insert(0, os.path.dirname(__file__)) + + import versioneer + |