Skip to content

Commit a8a3a36

Browse files
committed
Auto-generated commit
1 parent 91b86a1 commit a8a3a36

File tree

1,034 files changed

+1059
-708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,034 files changed

+1059
-708
lines changed

.github/.keepalive

-1
This file was deleted.

.github/workflows/productionize.yml

-3
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,6 @@ jobs:
344344
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
345345
with:
346346
status: ${{ job.status }}
347-
steps: ${{ toJson(steps) }}
348347
channel: '#npm-ci'
349348
if: failure()
350349

@@ -518,7 +517,6 @@ jobs:
518517
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
519518
with:
520519
status: ${{ job.status }}
521-
steps: ${{ toJson(steps) }}
522520
channel: '#npm-ci'
523521
if: failure()
524522

@@ -698,7 +696,6 @@ jobs:
698696
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
699697
with:
700698
status: ${{ job.status }}
701-
steps: ${{ toJson(steps) }}
702699
channel: '#npm-ci'
703700
if: failure()
704701

.github/workflows/publish.yml

-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ jobs:
176176
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
177177
with:
178178
status: ${{ job.status }}
179-
steps: ${{ toJson(steps) }}
180179
channel: '#npm-ci'
181180
if: failure()
182181

.github/workflows/test.yml

-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,5 @@ jobs:
9595
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
9696
with:
9797
status: ${{ job.status }}
98-
steps: ${{ toJson(steps) }}
9998
channel: '#npm-ci'
10099
if: failure()

.github/workflows/test_bundles.yml

-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ jobs:
9494
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
9595
with:
9696
status: ${{ job.status }}
97-
steps: ${{ toJson(steps) }}
9897
channel: '#npm-ci'
9998
if: failure()
10099

@@ -139,7 +138,6 @@ jobs:
139138
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
140139
with:
141140
status: ${{ job.status }}
142-
steps: ${{ toJson(steps) }}
143141
channel: '#npm-ci'
144142
if: failure()
145143

@@ -184,6 +182,5 @@ jobs:
184182
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
185183
with:
186184
status: ${{ job.status }}
187-
steps: ${{ toJson(steps) }}
188185
channel: '#npm-ci'
189186
if: failure()

.github/workflows/test_coverage.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,13 @@ jobs:
8484
- name: 'Upload coverage to Codecov'
8585
id: upload
8686
# Pin action to full length commit SHA
87-
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
87+
uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed # v4.3.0
8888
with:
8989
directory: reports/coverage
9090
flags: unittests
9191
fail_ci_if_error: true
92+
env:
93+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
9294

9395
# Extract coverage value:
9496
- name: 'Extract coverage value and assign to output'
@@ -117,7 +119,6 @@ jobs:
117119
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
118120
with:
119121
status: ${{ job.status }}
120-
steps: ${{ toJson(steps) }}
121122
channel: '#npm-ci'
122123
if: failure()
123124

.github/workflows/test_install.yml

-1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,5 @@ jobs:
8181
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
8282
with:
8383
status: ${{ job.status }}
84-
steps: ${{ toJson(steps) }}
8584
channel: '#npm-ci'
8685
if: failure()

LICENSE

+30-34
Original file line numberDiff line numberDiff line change
@@ -180,44 +180,14 @@ DEPENDENCIES & ATTRIBUTION
180180
The library links against the following external libraries or contains
181181
implementations from the following external libraries, which have their own
182182
licenses:
183-
184-
* Boost <http://www.boost.org/LICENSE_1_0.txt>
185-
186-
Boost Software License - Version 1.0 - August 17th, 2003
187-
188-
Permission is hereby granted, free of charge, to any person or organization
189-
obtaining a copy of the software and accompanying documentation covered by
190-
this license (the "Software") to use, reproduce, display, distribute,
191-
execute, and transmit the Software, and to prepare derivative works of the
192-
Software, and to permit third-parties to whom the Software is furnished to
193-
do so, all subject to the following:
194-
195-
The copyright notices in the Software and this entire statement, including
196-
the above license grant, this restriction and the following disclaimer,
197-
must be included in all copies of the Software, in whole or in part, and
198-
all derivative works of the Software, unless such copies or derivative
199-
works are solely in the form of machine-executable object code generated by
200-
a source language processor.
201-
202-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
203-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
204-
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
205-
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
206-
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
207-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
208-
DEALINGS IN THE SOFTWARE.
209-
210-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
211-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
212-
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
213-
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
214-
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
215-
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
216-
DEALINGS IN THE SOFTWARE.
217183
Apache License
218184
Version 2.0, January 2004
219185
http://www.apache.org/licenses/
220186

187+
The library links against the following external libraries or contains
188+
implementations from the following external libraries, which have their own
189+
licenses:
190+
221191
* StatsFuns.jl <https://raw.githubusercontent.com/JuliaStats/StatsFuns.jl/
222192
e66dd973650c375bc1739c820e5b96bb5bd000a8/LICENSE.md>
223193

@@ -242,3 +212,29 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
242212
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
243213
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
244214

215+
* Boost <http://www.boost.org/LICENSE_1_0.txt>
216+
217+
Boost Software License - Version 1.0 - August 17th, 2003
218+
219+
Permission is hereby granted, free of charge, to any person or organization
220+
obtaining a copy of the software and accompanying documentation covered by
221+
this license (the "Software") to use, reproduce, display, distribute,
222+
execute, and transmit the Software, and to prepare derivative works of the
223+
Software, and to permit third-parties to whom the Software is furnished to
224+
do so, all subject to the following:
225+
226+
The copyright notices in the Software and this entire statement, including
227+
the above license grant, this restriction and the following disclaimer,
228+
must be included in all copies of the Software, in whole or in part, and
229+
all derivative works of the Software, unless such copies or derivative
230+
works are solely in the form of machine-executable object code generated by
231+
a source language processor.
232+
233+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
234+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
235+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
236+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
237+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
238+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
239+
DEALINGS IN THE SOFTWARE.
240+

base/dists/arcsine/cdf/test/fixtures/julia/large_range.json

+1-1
Large diffs are not rendered by default.

base/dists/arcsine/cdf/test/fixtures/julia/medium_range.json

+1-1
Large diffs are not rendered by default.

base/dists/arcsine/cdf/test/fixtures/julia/runner.jl

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ function gen( x, a, b, name )
6060
# Write the data to the output filepath as JSON:
6161
outfile = open( filepath, "w" );
6262
write( outfile, JSON.json(data) );
63+
write( outfile, "\n" );
6364
close( outfile );
6465
end
6566

base/dists/arcsine/cdf/test/fixtures/julia/small_range.json

+1-1
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"expected":[1.277150859879498,1.804891015066719,0.3464307896562838,1.928059700785016,2.039132554487741,0.4530438579436029,1.6374434369820916,2.031832669550607,0.9933220723832792,1.0981990200229157,1.734942712641032,0.548413418140191,1.8232586167256195,1.088761964127428,-0.14861618234089136,2.011994585125279,1.9065979592211284,-1.3565945592704474,2.0434158297871114,-1.3409813719618433,1.101987150713752,0.9323538583821287,1.5378628293218872,1.0933584704051784,1.5665501714210748,0.10161196236653156,0.7524962383456835,1.7612471270956394,2.0387868501691115,1.988550824188407,2.0469899515276513,0.49719656935004763,0.390707657612685,1.615769921613128,2.011501888972594,0.1379743113307598,1.8836939699527147,1.47646458732089,1.569811576985222,1.297696653410213,1.9224898430325421,0.6684613353225822,1.6848616510714363,0.3589895401438712,1.2447846476270066,-0.10454987345078728,2.0113046856662615,1.749310535938991,1.407738320248155,1.9612621341695524,1.5130656083332745,0.5007866396400116,0.7360925462530892,1.9692440455257145,1.3186542035243052,1.2250991488585794,0.2963561318491039,1.852957463865725,1.3270261794137443,1.7641478052662114,1.9656448600211438,0.3000594729071091,1.4739881179919723,1.9574987284640302,0.856209925972373,0.4812343968701913,1.900231082698717,1.8211165021477713,1.3976444116026876,1.8964152659857048,1.528068141087847,1.9765268116694852,1.7414845331163926,1.6565753068562104,1.8016697505842405,1.5464801074988783,1.9712893072404647,1.9409731176617022,1.9546755153607802,1.8360807550538691,0.7822946991629813,1.1468140239400724,0.9068930901522807,1.7742547414494907,-2.385419267901373,1.4120140120587426,1.8278777640765718,1.7984436050008568,0.6365843430624595,1.8348240543645358,1.5581328852197434,1.6692353250757959,-0.3006169556068766,1.8156632841574023,1.2728037435232298,0.020869617555372616,2.056403051728601,1.396298102861813,1.9638563447431125,1.0772775402605574],"b":[9.582986628700034,17.222549660367896,6.741506995213508,15.930995368715461,18.487786276649807,9.235178695949003,10.16980000609535,19.50324420735204,6.186538793249852,9.861947254299343,10.27339100550822,8.013966929363013,12.485257467565827,4.9232784251768225,1.3067768548130676,14.924189439689911,11.070182044354324,3.642305970369295,15.435952640364409,5.212351853372252,6.409859313563164,9.393014382992229,6.719857084168112,5.048754226498193,9.262906279016889,10.374911845203032,3.298257628293133,9.155705340318418,12.93712545035536,13.538240015431738,14.068504925372066,5.117020161654004,7.600301298968237,9.325488432509314,11.517908025149348,10.354005644581061,11.292160573703272,8.599627843210607,14.325555153351779,4.933041797999692,13.712251521868836,6.4321095099782895,14.329892601841872,11.56840810780502,9.230881790786672,5.537289355539257,11.76007417688592,15.717764444955906,5.26389461994075,15.341833964293798,9.058668849047091,11.573116893146246,7.526904027228862,13.697550029444242,8.013611229751241,7.867386356476535,9.548011955197717,12.031202432320391,14.557453855440155,12.936228898159152,18.127215359224763,11.080131885975394,13.921829824579493,11.076215598429851,9.84407695708174,8.673075144401826,14.572756581296531,16.436247147648977,7.207709242184532,14.289556740337249,6.893242157178003,18.133561386735146,16.05107105728198,14.749049511141756,9.361124526164438,7.849541721133225,13.767372114593773,17.790802443808793,16.808906840898977,17.965367996386593,6.7304854914587615,10.877696283726024,3.3365137800156575,16.873395347564408,7.1828939023869225,13.969422649267736,15.06749562150179,11.966363765413668,6.606063885045115,17.854867365128086,14.219691109713077,14.423620324695834,2.7652445745395338,10.716118404067728,6.560971041446262,6.9594333145208935,18.338353000681842,6.79636343129347,16.5331217252442,5.59559561478194],"a":[5.016631439250117,9.482133215991732,4.941131476003832,7.176002282381344,8.704288854384377,7.2322542546334105,3.6227935717423088,9.790905150619345,2.7485503425275337,6.043806863897034,3.0559014322146494,5.8106192121485805,4.60135441883847,1.1410005546001178,0.20937186460912027,5.402626016966803,2.501084401717082,3.314400556324555,5.61045993076561,4.879286614843254,2.577227878709727,6.158372135770447,0.7933956948641208,1.249051074918337,3.1639683459232493,8.965494430934891,0.5960726049993492,1.745844920743005,3.1570096408473614,4.237301604602948,4.207831876711515,3.023679809763027,5.718419688627336,2.9188519923632894,2.001034684604557,8.892395324889197,2.9170988705623446,3.026095295303284,8.206693638367547,0.2718967860207955,5.005886948980112,3.947722853927984,7.464960653412101,9.745279545826381,4.809956027359341,4.390444461118744,2.2450774101904702,8.39582670723444,0.060543857183739114,6.291274188842153,3.2773601035875055,9.472247795975036,4.868683241303559,4.574460409826004,3.253749217526154,3.5326377189470914,7.835569638135551,3.9096449890815244,9.757575117410545,5.504843655017135,9.036902411478431,9.36133605361535,8.362082882220648,2.059652739055864,6.846589566568532,6.612883783475533,6.058044010023719,8.569214247226395,2.0566164394401554,5.807272841317596,1.0245452551347767,8.943787912183103,8.786211187866426,8.075580728402867,1.6456018940575134,1.8717896899604125,4.625604294663354,8.922019354387809,7.817763760325458,9.979725588017283,3.9465678076615363,6.869351038061875,0.18318842136680447,9.366520727462092,7.065691721367411,8.743776331772802,7.147091425703946,4.275692424074455,4.199623063589137,9.879254215869796,8.171874230625324,7.665128242919106,1.8225872776526209,2.8918693880404467,2.0144232456141697,5.659342534485536,8.384422214955801,1.652200923609286,7.459052410763867,1.8565065524758628]}
1+
{"expected":[1.277150859879498,1.804891015066719,0.3464307896562838,1.928059700785016,2.039132554487741,0.4530438579436029,1.6374434369820916,2.031832669550607,0.9933220723832792,1.0981990200229157,1.734942712641032,0.548413418140191,1.8232586167256195,1.088761964127428,-0.14861618234089136,2.011994585125279,1.9065979592211284,-1.3565945592704474,2.0434158297871114,-1.3409813719618433,1.101987150713752,0.9323538583821287,1.5378628293218872,1.0933584704051784,1.5665501714210748,0.10161196236653156,0.7524962383456835,1.7612471270956394,2.0387868501691115,1.988550824188407,2.0469899515276513,0.49719656935004763,0.390707657612685,1.615769921613128,2.011501888972594,0.1379743113307598,1.8836939699527147,1.47646458732089,1.569811576985222,1.297696653410213,1.9224898430325421,0.6684613353225822,1.6848616510714363,0.3589895401438712,1.2447846476270066,-0.10454987345078728,2.0113046856662615,1.749310535938991,1.407738320248155,1.9612621341695524,1.5130656083332745,0.5007866396400116,0.7360925462530892,1.9692440455257145,1.3186542035243052,1.2250991488585794,0.2963561318491039,1.852957463865725,1.3270261794137443,1.7641478052662114,1.9656448600211438,0.3000594729071091,1.4739881179919723,1.9574987284640302,0.856209925972373,0.4812343968701913,1.900231082698717,1.8211165021477713,1.3976444116026876,1.8964152659857048,1.528068141087847,1.9765268116694852,1.7414845331163926,1.6565753068562104,1.8016697505842405,1.5464801074988783,1.9712893072404647,1.9409731176617022,1.9546755153607802,1.8360807550538691,0.7822946991629813,1.1468140239400724,0.9068930901522807,1.7742547414494907,-2.385419267901373,1.4120140120587426,1.8278777640765718,1.7984436050008568,0.6365843430624595,1.8348240543645358,1.5581328852197434,1.6692353250757959,-0.3006169556068766,1.8156632841574023,1.2728037435232298,0.020869617555372616,2.056403051728601,1.396298102861813,1.9638563447431125,1.0772775402605574],"b":[9.582986628700034,17.222549660367896,6.741506995213508,15.930995368715461,18.487786276649807,9.235178695949003,10.16980000609535,19.50324420735204,6.186538793249852,9.861947254299343,10.27339100550822,8.013966929363013,12.485257467565827,4.9232784251768225,1.3067768548130676,14.924189439689911,11.070182044354324,3.642305970369295,15.435952640364409,5.212351853372252,6.409859313563164,9.393014382992229,6.719857084168112,5.048754226498193,9.262906279016889,10.374911845203032,3.298257628293133,9.155705340318418,12.93712545035536,13.538240015431738,14.068504925372066,5.117020161654004,7.600301298968237,9.325488432509314,11.517908025149348,10.354005644581061,11.292160573703272,8.599627843210607,14.325555153351779,4.933041797999692,13.712251521868836,6.4321095099782895,14.329892601841872,11.56840810780502,9.230881790786672,5.537289355539257,11.76007417688592,15.717764444955906,5.26389461994075,15.341833964293798,9.058668849047091,11.573116893146246,7.526904027228862,13.697550029444242,8.013611229751241,7.867386356476535,9.548011955197717,12.031202432320391,14.557453855440155,12.936228898159152,18.127215359224763,11.080131885975394,13.921829824579493,11.076215598429851,9.84407695708174,8.673075144401826,14.572756581296531,16.436247147648977,7.207709242184532,14.289556740337249,6.893242157178003,18.133561386735146,16.05107105728198,14.749049511141756,9.361124526164438,7.849541721133225,13.767372114593773,17.790802443808793,16.808906840898977,17.965367996386593,6.7304854914587615,10.877696283726024,3.3365137800156575,16.873395347564408,7.1828939023869225,13.969422649267736,15.06749562150179,11.966363765413668,6.606063885045115,17.854867365128086,14.219691109713077,14.423620324695834,2.7652445745395338,10.716118404067728,6.560971041446262,6.9594333145208935,18.338353000681842,6.79636343129347,16.5331217252442,5.59559561478194],"a":[5.016631439250117,9.482133215991732,4.941131476003832,7.176002282381344,8.704288854384377,7.2322542546334105,3.6227935717423088,9.790905150619345,2.7485503425275337,6.043806863897034,3.0559014322146494,5.8106192121485805,4.60135441883847,1.1410005546001178,0.20937186460912027,5.402626016966803,2.501084401717082,3.314400556324555,5.61045993076561,4.879286614843254,2.577227878709727,6.158372135770447,0.7933956948641208,1.249051074918337,3.1639683459232493,8.965494430934891,0.5960726049993492,1.745844920743005,3.1570096408473614,4.237301604602948,4.207831876711515,3.023679809763027,5.718419688627336,2.9188519923632894,2.001034684604557,8.892395324889197,2.9170988705623446,3.026095295303284,8.206693638367547,0.2718967860207955,5.005886948980112,3.947722853927984,7.464960653412101,9.745279545826381,4.809956027359341,4.390444461118744,2.2450774101904702,8.39582670723444,0.060543857183739114,6.291274188842153,3.2773601035875055,9.472247795975036,4.868683241303559,4.574460409826004,3.253749217526154,3.5326377189470914,7.835569638135551,3.9096449890815244,9.757575117410545,5.504843655017135,9.036902411478431,9.36133605361535,8.362082882220648,2.059652739055864,6.846589566568532,6.612883783475533,6.058044010023719,8.569214247226395,2.0566164394401554,5.807272841317596,1.0245452551347767,8.943787912183103,8.786211187866426,8.075580728402867,1.6456018940575134,1.8717896899604125,4.625604294663354,8.922019354387809,7.817763760325458,9.979725588017283,3.9465678076615363,6.869351038061875,0.18318842136680447,9.366520727462092,7.065691721367411,8.743776331772802,7.147091425703946,4.275692424074455,4.199623063589137,9.879254215869796,8.171874230625324,7.665128242919106,1.8225872776526209,2.8918693880404467,2.0144232456141697,5.659342534485536,8.384422214955801,1.652200923609286,7.459052410763867,1.8565065524758628]}

base/dists/arcsine/entropy/test/fixtures/julia/runner.jl

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ function gen( a, b, name )
5858
# Write the data to the output filepath as JSON:
5959
outfile = open( filepath, "w" );
6060
write( outfile, JSON.json(data) );
61+
write( outfile, "\n" );
6162
close( outfile );
6263
end
6364

base/dists/arcsine/logcdf/test/fixtures/julia/large_range.json

+1-1
Large diffs are not rendered by default.

base/dists/arcsine/logcdf/test/fixtures/julia/medium_range.json

+1-1
Large diffs are not rendered by default.

base/dists/arcsine/logcdf/test/fixtures/julia/runner.jl

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ function gen( x, a, b, name )
6060
# Write the data to the output filepath as JSON:
6161
outfile = open( filepath, "w" );
6262
write( outfile, JSON.json(data) );
63+
write( outfile, "\n" );
6364
close( outfile );
6465
end
6566

base/dists/arcsine/logcdf/test/fixtures/julia/small_range.json

+1-1
Large diffs are not rendered by default.

base/dists/arcsine/logpdf/test/fixtures/julia/large_range.json

+1-1
Large diffs are not rendered by default.

base/dists/arcsine/logpdf/test/fixtures/julia/medium_range.json

+1-1
Large diffs are not rendered by default.

base/dists/arcsine/logpdf/test/fixtures/julia/runner.jl

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ function gen( x, a, b, name )
6060
# Write the data to the output filepath as JSON:
6161
outfile = open( filepath, "w" );
6262
write( outfile, JSON.json(data) );
63+
write( outfile, "\n" );
6364
close( outfile );
6465
end
6566

base/dists/arcsine/logpdf/test/fixtures/julia/small_range.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)