Skip to content

Commit

Permalink
Move example logos to img folder (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau authored Nov 12, 2023
2 parents 595b0ff + 1b27275 commit 8c38baf
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 15 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion examples/networkx.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
38 changes: 25 additions & 13 deletions examples/numpy.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 = [
Expand Down Expand Up @@ -56,19 +70,17 @@ 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]
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"]

2 changes: 1 addition & 1 deletion examples/xarray.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 8c38baf

Please sign in to comment.