Skip to content

Commit

Permalink
Merge 08fe16d into 79fd34b
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Aug 18, 2020
2 parents 79fd34b + 08fe16d commit 85f54b5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ os:
# - osx

julia:
- 1.3
- 1.5
- nightly

matrix:
Expand All @@ -21,6 +21,6 @@ script:

after_success:
# push coverage results to Coveralls
- julia -e 'using Pkg; cd(Pkg.dir("SummationByPartsOperators")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("PolynomialBases")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'using Pkg; cd(Pkg.dir("SummationByPartsOperators")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("PolynomialBases")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PolynomialBases"
uuid = "c74db56a-226d-5e98-8bb0-a6049094aeea"
author = ["Hendrik Ranocha"]
version = "0.4.5"
version = "0.4.6"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand All @@ -15,7 +15,7 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
[compat]
ArgCheck = "1, 2.0"
FastGaussQuadrature = "0.4.2"
FastTransforms = "0.4, 0.5, 0.6, 0.7, 0.8, 0.9"
FastTransforms = "0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.10"
Parameters = "0.12"
Requires = "0.5.2, 1"
SpecialFunctions = "0.7, 0.8, 0.9, 0.10"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PolynomialBases

[![Build Status](https://travis-ci.org/ranocha/PolynomialBases.jl.svg?branch=master)](https://travis-ci.org/ranocha/PolynomialBases.jl)
[![Build Status](https://travis-ci.com/ranocha/PolynomialBases.jl.svg?branch=master)](https://travis-ci.com/github/ranocha/PolynomialBases.jl)
[![Build status](https://ci.appveyor.com/api/projects/status/i1saoodeqrepiodl?svg=true)](https://ci.appveyor.com/project/ranocha/PolynomialBases-jl)
[![Coverage Status](https://coveralls.io/repos/ranocha/PolynomialBases.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/ranocha/PolynomialBases.jl?branch=master)
[![codecov.io](http://codecov.io/github/ranocha/PolynomialBases.jl/coverage.svg?branch=master)](http://codecov.io/github/ranocha/PolynomialBases.jl?branch=master)
Expand Down
2 changes: 1 addition & 1 deletion src/nodal_bases.jl
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ function ClenshawCurtis(p::Int, T=Float64)
nodes = T[0]
weights = T[2]
else
nodes = clenshawcurtisnodes(T, p+1)
nodes = clenshawcurtisnodes(T, p+1) |> collect
weights = clenshawcurtisweights(chebyshevmoments1(T, p+1))
end
baryweights = barycentric_weights(nodes)
Expand Down

0 comments on commit 85f54b5

Please sign in to comment.