Skip to content

Commit c2263d1

Browse files
authored
Merge pull request #311 from vidartf/nbminor
fix docs ci
2 parents ccc3f4d + f60b1fe commit c2263d1

12 files changed

+12
-13
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ matrix:
1818
packages:
1919
- pandoc
2020
script:
21+
- python -m pytest_check_links
2122
- cd docs
2223
- make html
2324
- make linkcheck
24-
- cd ..
25-
- python -m pytest_check_links
2625
cache:
2726
pip: true
2827
directories:

docs/source/introduction.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ Other notable deviations from the threejs API are listed below:
7575

7676
.. _`threejs animation`: https://threejs.org/docs/#manual/introduction/Animation-system
7777

78-
.. _`numpy arrays`: https://www.numpy.org/
78+
.. _`numpy arrays`: https://numpy.org/

examples/BufferAttributes and BufferGeometry.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,5 +320,5 @@
320320
}
321321
},
322322
"nbformat": 4,
323-
"nbformat_minor": 1
323+
"nbformat_minor": 2
324324
}

examples/Examples.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,5 +471,5 @@
471471
}
472472
},
473473
"nbformat": 4,
474-
"nbformat_minor": 1
474+
"nbformat_minor": 2
475475
}

examples/Geometries.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1777,5 +1777,5 @@
17771777
}
17781778
},
17791779
"nbformat": 4,
1780-
"nbformat_minor": 1
1780+
"nbformat_minor": 2
17811781
}

examples/GeometryVertices.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,5 @@
120120
}
121121
},
122122
"nbformat": 4,
123-
"nbformat_minor": 1
123+
"nbformat_minor": 2
124124
}

examples/Textures.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,5 +356,5 @@
356356
}
357357
},
358358
"nbformat": 4,
359-
"nbformat_minor": 1
359+
"nbformat_minor": 2
360360
}

examples/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

22
def pytest_collectstart(collector):
3-
if collector.fspath and collector.fspath.ext == '.ipynb':
3+
if collector.fspath and collector.fspath.ext == '.ipynb' and hasattr(collector, 'skip_compare'):
44
collector.skip_compare += ('application/vnd.jupyter.widget-view+json', 'text/html')

examples/renderer_limit.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,5 @@
165165
}
166166
},
167167
"nbformat": 4,
168-
"nbformat_minor": 1
168+
"nbformat_minor": 2
169169
}

examples/superellipsoid.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,5 +242,5 @@
242242
}
243243
},
244244
"nbformat": 4,
245-
"nbformat_minor": 1
245+
"nbformat_minor": 2
246246
}

0 commit comments

Comments
 (0)