Skip to content

Commit

Permalink
Merge branch 'dev' into fix-lightcurve-lims-566
Browse files Browse the repository at this point in the history
  • Loading branch information
ddobie committed Sep 11, 2024
2 parents 6aadc8a + 4cb4a05 commit a461978
Show file tree
Hide file tree
Showing 7 changed files with 10,486 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

#### Added

- Add epochs 64 and 65 [#568](https://github.com/askap-vast/vast-tools/pull/568)
- Support for Python 3.10 [#334](https://github.com/askap-vast/vast-tools/pull/334)
- Add access to epoch 63 [#563](https://github.com/askap-vast/vast-tools/pull/563)

Expand All @@ -24,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

#### Fixed

- Fixed formatting of new epoch addition git example [#568](https://github.com/askap-vast/vast-tools/pull/568)
- Directly compare stmoc times, avoiding conversion to JD, and replace equality requirement with `isclose` [#334](https://github.com/askap-vast/vast-tools/pull/334)

#### Removed
Expand All @@ -32,6 +34,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

#### List of PRs

- [#568](https://github.com/askap-vast/vast-tools/pull/568): feat, docs: Add epochs 64 and 65, and fix new epoch addition docs page syntax
- [#334](https://github.com/askap-vast/vast-tools/pull/334): fix, docs, feat: Dependency refresh including python 3.10 support and corresponding minor updates
- [#563](https://github.com/askap-vast/vast-tools/pull/563): feat: Add access to epoch 63
- [#562](https://github.com/askap-vast/vast-tools/pull/562): fix: Updated github actions to latest versions
Expand Down
3 changes: 2 additions & 1 deletion docs/contributing/newepoch.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ The following steps will allow users to add epoch 99 to the package, from start
11. Commit all of the new changes, and push to the github repository with
!!! example "Example: Push new epoch to git"
Commit changes required for the addition of epoch 99
```git add vasttools/data/csvs/vast_epoch99_info.csv
```bash
git add vasttools/data/csvs/vast_epoch99_info.csv
git add vasttools/data/pickles/vast_epoch99_fields_sc.pickle
git add __init__.py
git add vasttools/data/mocs/VAST_PILOT_EPOCH99.moc.fits
Expand Down
4 changes: 3 additions & 1 deletion vasttools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@
"60": "60",
"61": "61",
"62": "62",
"63": "63"
"63": "63",
"64": "64",
"65": "65",
}

OBSERVED_EPOCHS = {
Expand Down
3,061 changes: 3,061 additions & 0 deletions vasttools/data/csvs/vast_epoch64_info.csv

Large diffs are not rendered by default.

7,417 changes: 7,417 additions & 0 deletions vasttools/data/csvs/vast_epoch65_info.csv

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.

0 comments on commit a461978

Please sign in to comment.