Skip to content
This repository has been archived by the owner on Nov 5, 2020. It is now read-only.

Commit

Permalink
ci: try without s
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Apr 9, 2019
1 parent 4fe2488 commit 0f519f9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ install:
- appveyor-retry choco install -y InnoSetup
- appveyor-retry choco install -y wget
# install R with lme4
- wget -q https://cran.r-project.org/bin/windows/base/old/3.2.5/R-3.2.5-win.exe
- wget -q http://cran.r-project.org/bin/windows/base/old/3.2.5/R-3.2.5-win.exe
- R-3.2.5-win.exe /silent
# Installing an older version of R did neither work so:
#- choco install -dfvy -version 3.2.5 -source 'http://cran.at.r-project.org/bin/windows/base/old/3.2.5/;http://cran.at.r-project.org/bin/windows/base/old/;c:\projects\shapeout' r.project
Expand Down
1 change: 0 additions & 1 deletion shapeout/gui/plot_contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ def set_contour_data(plot, analysis):
kde_kwargs=kde_kwargs,
)
plev = list(np.nanpercentile(pdensity, q=levels*100))

else:
raise ValueError("Unknown contour level mode `{}`!".format(mode))

Expand Down
2 changes: 1 addition & 1 deletion shapeout/gui/plot_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ def set_scatter_data(plot, mm):
density = mm.get_kde_scatter(xax=xax,
yax=yax,
positions=positions,
kde_type=kde_type,
xscale=scalex,
yscale=scaley,
kde_type=kde_type,
kde_kwargs=kde_kwargs,
)
print("...KDE scatter time {}: {:.2f}s".format(kde_type, time.time()-a))
Expand Down

0 comments on commit 0f519f9

Please sign in to comment.