Skip to content

Commit

Permalink
Loosen astropy version restriction (#51)
Browse files Browse the repository at this point in the history
* loosen astropy version restriction to ">=5.3"

* fixup docs

* prep release v0.3.8. update CHANGELOG.
  • Loading branch information
troyraen authored Jul 2, 2024
1 parent 9747522 commit d55b336
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

(none)

## \[v0.3.8\] - 2024-07-02

### Changed

- Loosen `astropy` version restriction to ">=5.3". `astropy` v<6.0.0 is required by `supernnova` v3.0.1
which is not a direct dependency of `pittgoogle-client` but is often used with it.

## \[v0.3.7\] - 2024-07-02

### Added
Expand Down
7 changes: 5 additions & 2 deletions docs/source/for-developers/release-new-version.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,16 @@ By following these instructions, you will:
- Under "Write", paste in the relevant section of CHANGELOG.md describing the release.
- Click "Publish release".

Completing step 3 will:
Completing step 3 will (or should):

- Tag a new version on GitHub.
- Publish the documentation to GitHub pages.
- Publish the package to PyPI.org.

You will now be able to install the new version using:
View the [GitHub Actions](https://github.com/mwvgroup/pittgoogle-client/actions) page to see the
status of the release process.

If all went well, you will now be able to install the new version using:

```bash
pip install --upgrade pittgoogle-client
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ classifiers = [
# https://python-poetry.org/docs/dependency-specification/#git-dependencies
python = "^3.9"
attrs = ">=23.1"
astropy = ">=6.0"
astropy = ">=5.3" # v<6.0.0 required by supernnova 3.0.1
fastavro = ">=1.7.4"
google-auth-oauthlib = ">=1.0"
google-cloud-bigquery = ">=3.11.2"
Expand Down

0 comments on commit d55b336

Please sign in to comment.