Skip to content

Commit

Permalink
Merge branch 'master' into update_finch_version
Browse files Browse the repository at this point in the history
  • Loading branch information
mishaschwartz committed May 1, 2024
2 parents cf047ad + 97ee8da commit 36b5d96
Show file tree
Hide file tree
Showing 377 changed files with 4,841 additions and 1,563 deletions.
10 changes: 5 additions & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.27.1
current_version = 2.2.0
commit = True
tag = False
tag_name = {new_version}
Expand Down Expand Up @@ -30,17 +30,17 @@ search = {current_version}
replace = {new_version}

[bumpversion:file:RELEASE.txt]
search = {current_version} 2023-07-10T19:20:25Z
search = {current_version} 2024-04-18T15:04:09Z
replace = {new_version} {utcnow:%Y-%m-%dT%H:%M:%SZ}

[bumpversion:part:releaseTime]
values = 2023-07-10T19:20:25Z
values = 2024-04-18T15:04:09Z

[bumpversion:file(version):birdhouse/config/canarie-api/docker_configuration.py.template]
[bumpversion:file(version):birdhouse/components/canarie-api/docker_configuration.py.template]
search = 'version': '{current_version}'
replace = 'version': '{new_version}'

[bumpversion:file(releaseTime):birdhouse/config/canarie-api/docker_configuration.py.template]
[bumpversion:file(releaseTime):birdhouse/components/canarie-api/docker_configuration.py.template]
parse = 'releaseTime': '(?P<releaseTime>.*)'
serialize = {releaseTime}
replace = {utcnow:%Y-%m-%dT%H:%M:%SZ}
Expand Down
7 changes: 7 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @tlvu @fmigneault @mishaschwartz
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: ":bug: Bug Report"
about: Create an issue related to a bug or encountered problem.
title: ":bug: [BUG]: "
labels: bug
assignees: tlvu, MatProv
assignees: tlvu, fmigneault, mishaschwartz

---

Expand Down Expand Up @@ -45,4 +45,3 @@ Steps to reproduce the behavior:
@tag them below
-->

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: ":books: Documentation"
about: Report an issue related to missing, incorrect or insufficient documentation.
title: ":books: [Documentation]: "
labels: documentation
assignees: tlvu
assignees: tlvu, fmigneault, mishaschwartz
---

## Description
Expand Down
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Feature Request
about: Suggest an idea, new feature or enhancement to existing functionalities.
title: ":bulb: [Feature]"
labels: enhancement
assignees: tlvu
assignees: tlvu, fmigneault, mishaschwartz

---

Expand Down Expand Up @@ -33,4 +33,3 @@ assignees: tlvu
@tag them below
-->

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/support.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: ":question: Question"
about: Ask a question or request general help support.
title: ":question: [Question]: "
labels: question
assignees: tlvu, MatProv
assignees: tlvu, fmigneault, mishaschwartz
---

## Questions
Expand Down
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,14 @@ List any dependencies that are required for this change.
Links to other issues or sources.

- [ ] Things to do...

## CI Operations

<!--
The test suite can be run using a different DACCS config with ``birdhouse_daccs_configs_branch: branch_name`` in the PR description.
To globally skip the test suite regardless of the commit message use ``birdhouse_skip_ci`` set to ``true`` in the PR description.
Note that using ``[skip ci]``, ``[ci skip]`` or ``[no ci]`` in the commit message will override ``birdhouse_skip_ci`` from the PR description.
-->

birdhouse_daccs_configs_branch: master
birdhouse_skip_ci: false
3 changes: 3 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ component/geoserver:
component/jupyterhub:
- birdhouse/**/jupyterhub/**/*

component/STAC:
- birdhouse/**/*stac*/**/*

feature/WPS:
- birdhouse/**/finch/**/*
- birdhouse/**/flyingpigeon/**/*
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ venv/

## Testing
.pytest_cache/
*.log
7 changes: 4 additions & 3 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@ sphinx:
# Optionally build your docs in additional formats such as PDF and ePub
formats: all

# Optionally set the version of Python and requirements required to build your docs
# Optionally set the Python requirements required to build your docs
python:
version: 3.6
install:
- requirements: docs/requirements.txt

#conda:
# environment: environment-docs.yml

build:
image: stable
os: "ubuntu-22.04"
tools:
python: "3.10"
Loading

0 comments on commit 36b5d96

Please sign in to comment.