Skip to content

Commit 8e0936b

Browse files
authored
Merge pull request #58 from JuliaAstro/demote-utc
Demote UTC to I/O format and general overhaul
2 parents 8491919 + cdd36d4 commit 8e0936b

21 files changed

+673
-904
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,19 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '1.3' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
18+
- '1.0' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
1919
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
2020
- 'nightly'
2121
os:
2222
- ubuntu-latest
23-
- macos-latest
23+
- macOS-latest
2424
- windows-latest
2525
arch:
2626
- x64
27+
- x86
28+
exclude:
29+
- os: macOS-latest
30+
arch: x86
2731
steps:
2832
- uses: actions/checkout@v2
2933
- uses: julia-actions/setup-julia@v1

Project.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,19 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1313

1414
[compat]
1515
ERFA = "0.5, 0.6"
16-
EarthOrientation = "0.6, 0.7"
16+
EarthOrientation = "0.7"
1717
ItemGraphs = "0.4"
1818
LeapSeconds = "1.1"
1919
MacroTools = "0.5"
2020
Measurements = "2.2"
2121
MuladdMacro = "0.2"
2222
Reexport = "0.2, 1"
23-
SPICE = "0.1.1"
2423
julia = "1"
2524

2625
[extras]
2726
ERFA = "17511681-8477-586a-8d98-4cfd5a1f2ec3"
2827
Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7"
29-
SPICE = "5bab7191-041a-5c2e-a744-024b9c3a5062"
3028
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3129

3230
[targets]
33-
test = ["Test", "ERFA", "Measurements", "SPICE"]
31+
test = ["Test", "ERFA", "Measurements"]

docs/src/api/epochs.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@ Modules = [AstroTime.Epochs]
55
Private = false
66
```
77

8+
```@docs
9+
AstroTime.AstroDates.DateTime
10+
AstroTime.AstroDates.Date
11+
AstroTime.AstroDates.Time
12+
```
13+

docs/src/tutorial.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ The main difference is that you need to supply the time scale to be used.
1212
Out of the box, the following time scales are defined:
1313

1414
- [`TAI`](@ref): [International Atomic Time](https://en.wikipedia.org/wiki/International_Atomic_Time)
15-
- [`UTC`](@ref): [Coordinated Universal Time](https://en.wikipedia.org/wiki/Coordinated_Universal_Time)
1615
- [`UT1`](@ref): [Universal Time](https://en.wikipedia.org/wiki/Universal_Time#Versions)[^1]
1716
- [`TT`](@ref): [Terrestrial Time](https://en.wikipedia.org/wiki/Terrestrial_Time)
1817
- [`TCG`](@ref): [Geocentric Coordinate Time](https://en.wikipedia.org/wiki/Geocentric_Coordinate_Time)

0 commit comments

Comments
 (0)