Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.9.14 #507

Merged
merged 17 commits into from
Feb 8, 2025
Merged
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
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# These owners will be requested for review when someone opens a pull request.
* @ASFHyP3/documentation
* @ASFHyP3/Tools @ASFHyP3/SciDev @ASFHyP3/Services
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

version: 2
updates:
- package-ecosystem: pip
directory: /
schedule:
interval: weekly
labels:
- bumpless
- package-ecosystem: github-actions
directory: /
schedule:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2.1.0
uses: lycheeverse/lychee-action@v2.2.0

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'Check links' step
Uses Step: lychee
uses 'lycheeverse/lychee-action' with ref 'v2.2.0', not a pinned commit hash
env:
GITHUB_TOKEN: ${{secrets.TOOLS_BOT_PAK}}
with:
args: --insecure "docs/**/*.md" "README.md" "CODE_OF_CONDUCT.md"
args: --insecure "docs/**/*.md" "README.md"
fail: true
1 change: 0 additions & 1 deletion .github/workflows/update_asf_tools_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jobs:
run: |
gh pr create --title "${PR_TITLE}" \
--body "${PR_BODY}" \
--assignee ASFHyP3/tools \
--label tools-bot \
--head ${{ steps.patch.outputs.branch }} \
--base main
1 change: 0 additions & 1 deletion .github/workflows/update_sdk_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jobs:
run: |
gh pr create --title "${PR_TITLE}" \
--body "${PR_BODY}" \
--assignee ASFHyP3/tools \
--label tools-bot \
--head ${{ steps.patch.outputs.branch }} \
--base main
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.9.14]

### Changed
* Replace Code of Conduct with links to the [organization Code of Conduct](https://github.com/ASFHyP3/.github/blob/main/CODE_OF_CONDUCT.md).

## [0.9.13]

### Changed
Expand Down
125 changes: 0 additions & 125 deletions CODE_OF_CONDUCT.md

This file was deleted.

123 changes: 0 additions & 123 deletions docs/CODE_OF_CONDUCT.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ We're excited you would like to contribute to HyP3! Whether you're finding bugs,
adding new features, fixing anything broken, or improving documentation, get
started by submitting an issue or pull request!

Please read our [Code of Conduct](CODE_OF_CONDUCT.md "HyP3 Code of Conduct" ){target=_blank} before contributing.
Please read our [Code of Conduct](https://github.com/ASFHyP3/.github/blob/main/CODE_OF_CONDUCT.md "HyP3 Code of Conduct" ){target=_blank} before contributing.

## Issues and Pull Requests are welcome

Expand Down
12 changes: 1 addition & 11 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,7 @@ channels:
dependencies:
- 'python=3.10'
- pip
# For documentation
- mkdocs=1.5.3
- mkdocs-material=9.4.2
- hyp3_sdk=7.0.3 # also pinned in docs/using/sdk.md
- asf_tools=0.8.3 # also pinned in docs/tools/asf_tools.md
- requests
- pip:
# For documentation
- mkdocs-asf-theme==0.3.2
- mkdocs-redirects
- mkdocs-section-index
- mkdocstrings
- mkdocstrings-python
- mkdocs-macros-plugin
- -r requirements.txt
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ nav:
- Architecture: how_it_works.md
- Plugins: plugins.md
- Contributing: contributing.md
- Code of Conduct: CODE_OF_CONDUCT.md
- Code of Conduct: https://github.com/ASFHyP3/.github/blob/main/CODE_OF_CONDUCT.md" target="_blank
- What's New: whats_new.md
- Contact Us: contact.md

Expand Down
9 changes: 9 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
mkdocs==1.5.3
mkdocs-material==9.4.2
mkdocs-asf-theme==0.3.2
mkdocs-redirects
mkdocs-section-index
mkdocstrings==0.27.0 # FIXME: https://github.com/ASFHyP3/hyp3-docs/issues/498
mkdocstrings-python
mkdocs-macros-plugin
requests
Loading