Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
- uses: actions/cache@v2
env:
cache-name: cache-artifacts
with:
Expand All @@ -48,15 +48,15 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v2
with:
file: lcov.info
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- run: |
Expand Down
11 changes: 7 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "SphericalHarmonics"
uuid = "c489a379-e885-57ff-9236-bd896d33c250"
version = "0.1.19"
version = "0.1.20"

[deps]
IrrationalConstants = "92d709cd-6900-40b7-9082-c6be49f344b6"
Expand All @@ -12,17 +12,20 @@ SphericalHarmonicModes = "0e9554e2-b38b-11e9-16d7-9d9abfec665a"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
ForwardDiff = "0.10"
Aqua = "0.8"
ForwardDiff = "1"
HCubature = "1"
IrrationalConstants = "0.1"
LegendrePolynomials = "0.3"
IrrationalConstants = "0.2"
LegendrePolynomials = "0.3, 0.4"
MultiplesOfPi = "0.5"
OffsetArrays = "1"
Printf = "1"
Setfield = "0.7, 0.8, 1"
SpecialFunctions = "0.8, 1, 2"
SphericalHarmonicArrays = "0.4.4"
SphericalHarmonicModes = "0.4.7"
StaticArrays = "1"
Test = "1"
WignerD = "0.1"
julia = "1"

Expand Down
4 changes: 2 additions & 2 deletions src/irrationals.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Base.@irrational _sqrt3by4pi 0.4886025119029199 √(3/(4big(pi)))
Base.@irrational _sqrt3by2pi 0.690988298942671 √(3/(2big(pi)))
IrrationalConstants.@irrational _sqrt3by4pi √(3 / (4 * big(pi))) _Sqrt3by4pi
IrrationalConstants.@irrational _sqrt3by2pi √(3 / (2 * big(pi))) _Sqrt3by2pi

"""
SphericalHarmonics.Pole <: Real
Expand Down
20 changes: 0 additions & 20 deletions test/Project.toml

This file was deleted.