From 1b27275c2bd4be5fd4766b9cef5cdb1950fe19da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Melissa=20Weber=20Mendon=C3=A7a?= Date: Sat, 11 Nov 2023 20:53:48 -0300 Subject: [PATCH] Move example logos to img folder --- examples/{ => img}/numpy_logo.png | Bin examples/{ => img}/nx.png | Bin examples/{ => img}/xarray.png | Bin examples/networkx.toml | 2 +- examples/numpy.toml | 38 ++++++++++++++++++++---------- examples/xarray.toml | 2 +- 6 files changed, 27 insertions(+), 15 deletions(-) rename examples/{ => img}/numpy_logo.png (100%) rename examples/{ => img}/nx.png (100%) rename examples/{ => img}/xarray.png (100%) diff --git a/examples/numpy_logo.png b/examples/img/numpy_logo.png similarity index 100% rename from examples/numpy_logo.png rename to examples/img/numpy_logo.png diff --git a/examples/nx.png b/examples/img/nx.png similarity index 100% rename from examples/nx.png rename to examples/img/nx.png diff --git a/examples/xarray.png b/examples/img/xarray.png similarity index 100% rename from examples/xarray.png rename to examples/img/xarray.png diff --git a/examples/networkx.toml b/examples/networkx.toml index 78a99a14..819ec556 100644 --- a/examples/networkx.toml +++ b/examples/networkx.toml @@ -12,7 +12,7 @@ exec_failure = 'fallback' source = 'https://github.com/networkx/networkx' exclude = [ ] -logo = './nx.png' +logo = './img/nx.png' [meta] github_slug = 'networkx/networkx' tag = 'networkx-2.7.1' diff --git a/examples/numpy.toml b/examples/numpy.toml index 26e16417..938cd9a5 100644 --- a/examples/numpy.toml +++ b/examples/numpy.toml @@ -1,15 +1,29 @@ [global] + module = 'numpy' -exclude = ['numpy.distutils.misc_util:Configuration.__init__','numpy:tensordot'] -execute_exclude_patterns = ['numpy._','numpy.testing._priv', 'numpy.errstate', 'numpy.seterr', 'numpy.bincount', -'numpy.core._multiarray_umath.bincount', 'numpy.core._multiarray_umath.datetime_as_string', -'numpy.core._multiarray_umath.normalize_axis_index', 'numpy.core._multiarray_umath.shares_memory', -'numpy.datetime_as_string', 'numpy.shares_memory', 'numpy.squeeze', +exclude = [ +'numpy:tensordot', +] + +execute_exclude_patterns = [ +'numpy._', +'numpy.testing._priv', +'numpy.errstate', +'numpy.seterr', +'numpy.bincount', +'numpy.core._multiarray_umath.bincount', +'numpy.core._multiarray_umath.datetime_as_string', +'numpy.core._multiarray_umath.normalize_axis_index', +'numpy.core._multiarray_umath.shares_memory', +'numpy.datetime_as_string', +'numpy.shares_memory', +'numpy.squeeze', 'numpy.average', -'numpy.ctypeslib', 'numpy.append', 'numpy.ma.core', +'numpy.ctypeslib', +'numpy.append', +'numpy.ma.core', 'numpy.core.umath_tests', - # try to create a pager that waits for input 'numpy.lookfor', # write directly to stdout @@ -20,7 +34,7 @@ execute_exclude_patterns = ['numpy._','numpy.testing._priv', 'numpy.errstate', ' 'numpy.polynomial.chebyshev.chebinterpolate', 'numpy.lib.npyio._read', 'numpy.polynomial._polybase:ABCPolyBase', -'numpy.distutils.misc_util:Configuration.__init__' +'numpy.distutils.misc_util:Configuration.__init__', ] submodules = [ @@ -56,7 +70,7 @@ exec_failure = 'fallback' source = 'https://github.com/numpy/numpy' homepage = 'https://numpy.org' docs = 'https://numpy.org/doc/stable/' -logo = './numpy_logo.png' +logo = './img/numpy_logo.png' early_error = false [meta] @@ -64,11 +78,9 @@ github_slug = 'numpy/numpy' tag = 'v{version}' pypi = 'numpy' homepage = 'https://numpy.org/' -docspage = 'https://numpy.org/doc/1.22/' +docspage = 'https://numpy.org/doc/1.26/' [global.expected_errors] -VisitCitationReferenceNotImplementedError = [ - "numpy.fft", - ] +VisitCitationReferenceNotImplementedError = ["numpy.fft"] diff --git a/examples/xarray.toml b/examples/xarray.toml index 4d84d819..57b4b093 100644 --- a/examples/xarray.toml +++ b/examples/xarray.toml @@ -10,7 +10,7 @@ exclude = [ ] exec_failure = 'fallback' source = 'https://github.com/pydata/xarray' -logo = './xarray.png' +logo = './img/xarray.png' early_error = false [meta]