Skip to content

Commit 371d015

Browse files
Merge pull request #105 from astrolabsoftware/websiteUpdate
Website update: spark-fits version + vulnerability fix
2 parents f5f2d11 + 9c23640 commit 371d015

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ lazy val root = (project in file(".")).
4646
"org.apache.spark" %% "spark-core" % "2.1.0" % "provided",
4747
"org.apache.spark" %% "spark-sql" % "2.1.0" % "provided",
4848
// For loading FITS files
49-
"com.github.astrolabsoftware" %% "spark-fits" % "0.6.0",
49+
"com.github.astrolabsoftware" %% "spark-fits" % "0.7.0",
5050
// "org.datasyslab" % "geospark" % "1.1.3",
5151
// Uncomment if you want to trigger visualisation
5252
// "com.github.haifengl" % "smile-plot" % "1.5.1",

docs/01_installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ First produce a jar of the spark3D library, and then launch a spark-shell by spe
7070

7171
```bash
7272
toto:~$ JARS="target/scala-2.11/spark3d_2.11-0.2.2.jar,lib/jhealpix.jar"
73-
toto:~$ PACKAGES="com.github.astrolabsoftware:spark-fits_2.11:0.6.0"
73+
toto:~$ PACKAGES="com.github.astrolabsoftware:spark-fits_2.11:0.7.0"
7474
toto:~$ spark-shell --jars $JARS --packages $PACKAGES
7575
```
7676

docs/Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ GEM
1414
http_parser.rb (0.6.0)
1515
i18n (0.9.5)
1616
concurrent-ruby (~> 1.0)
17-
jekyll (3.8.3)
17+
jekyll (3.8.4)
1818
addressable (~> 2.4)
1919
colorator (~> 1.0)
2020
em-websocket (~> 0.5)
@@ -28,11 +28,11 @@ GEM
2828
rouge (>= 1.7, < 4)
2929
safe_yaml (~> 1.0)
3030
jekyll-feed (0.10.0)
31-
jekyll (~> 3.3)
31+
jekyll (~> 3.8.4)
3232
jekyll-sass-converter (1.5.2)
3333
sass (~> 3.4)
3434
jekyll-seo-tag (2.5.0)
35-
jekyll (~> 3.3)
35+
jekyll (~> 3.8.4)
3636
jekyll-watch (2.0.0)
3737
listen (~> 3.0)
3838
kramdown (1.17.0)
@@ -43,7 +43,7 @@ GEM
4343
ruby_dep (~> 1.2)
4444
mercenary (0.3.6)
4545
minima (2.5.0)
46-
jekyll (~> 3.5)
46+
jekyll (~> 3.8.4)
4747
jekyll-feed (~> 0.9)
4848
jekyll-seo-tag (~> 2.1)
4949
pathutil (0.16.1)
@@ -65,7 +65,7 @@ PLATFORMS
6565
ruby
6666

6767
DEPENDENCIES
68-
jekyll (~> 3.8.3)
68+
jekyll (~> 3.8.4)
6969
jekyll-feed (~> 0.6)
7070
minima (~> 2.0)
7171
tzinfo-data

docs/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Several goals have to be undertaken in this project:
4545

4646
## Current structure
4747

48-
<p align="center"><img width="500" src="https://github.com/astrolabsoftware/spark3D/raw/master/pic/spark3d_lib_0.2.1.png"/>
48+
<p align="center"><img width="500" src="https://github.com/astrolabsoftware/spark3D/raw/master/pic/spark3d_lib_0.2.2.png"/>
4949
</p>
5050

5151
## Support

runners/benchmark_knn.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ nNeighbours=500
3939

4040
## Dependencies
4141
jars="lib/jhealpix.jar"
42-
packages="com.github.astrolabsoftware:spark-fits_2.11:0.6.0"
42+
packages="com.github.astrolabsoftware:spark-fits_2.11:0.7.0"
4343

4444
# Run it!
4545
spark-submit \

runners/run_knn.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ nNeighbours=5000
3838

3939
## Dependencies
4040
jars="lib/jhealpix.jar"
41-
packages="com.github.astrolabsoftware:spark-fits_2.11:0.6.0,com.github.haifengl:smile-core:1.5.1,com.github.haifengl:smile-plot:1.5.1,com.github.haifengl:smile-math:1.5.1,com.github.haifengl:smile-scala_2.11:1.5.1"
41+
packages="com.github.astrolabsoftware:spark-fits_2.11:0.7.0,com.github.haifengl:smile-core:1.5.1,com.github.haifengl:smile-plot:1.5.1,com.github.haifengl:smile-math:1.5.1,com.github.haifengl:smile-scala_2.11:1.5.1"
4242

4343
# Run it!
4444
spark-submit \

runners/run_knnGeo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ nNeighbours=500
3232

3333
## Dependencies
3434
jars="lib/jhealpix.jar"
35-
packages="com.github.astrolabsoftware:spark-fits_2.11:0.6.0,org.datasyslab:geospark:1.1.3"
35+
packages="com.github.astrolabsoftware:spark-fits_2.11:0.7.0,org.datasyslab:geospark:1.1.3"
3636

3737
# Run it!
3838
spark-submit \

runners/run_part.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mode="onion"
3939

4040
## Dependencies
4141
jars="lib/jhealpix.jar"
42-
packages="com.github.astrolabsoftware:spark-fits_2.11:0.6.0"
42+
packages="com.github.astrolabsoftware:spark-fits_2.11:0.7.0"
4343

4444
# Run it!
4545
spark-submit \

runners/run_scala.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ display="show"
3131

3232
## Dependencies
3333
jars="lib/jhealpix.jar"
34-
packages="com.github.astrolabsoftware:spark-fits_2.11:0.6.0,com.github.haifengl:smile-core:1.5.1,com.github.haifengl:smile-plot:1.5.1,com.github.haifengl:smile-math:1.5.1,com.github.haifengl:smile-scala_2.11:1.5.1"
34+
packages="com.github.astrolabsoftware:spark-fits_2.11:0.7.0,com.github.haifengl:smile-core:1.5.1,com.github.haifengl:smile-plot:1.5.1,com.github.haifengl:smile-math:1.5.1,com.github.haifengl:smile-scala_2.11:1.5.1"
3535

3636
# Run it!
3737
spark-submit \

runners/run_shuffle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ nside=8192
3333

3434
## Dependencies
3535
jars="lib/jhealpix.jar"
36-
packages="com.github.astrolabsoftware:spark-fits_2.11:0.6.0"
36+
packages="com.github.astrolabsoftware:spark-fits_2.11:0.7.0"
3737

3838
# Run it!
3939
spark-submit \

0 commit comments

Comments
 (0)