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

Fix: update governance --> handbook #284

Merged
merged 1 commit into from
Apr 4, 2024
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Contributing Guide for the Python open source software packaging book

Important! Before contributing to this repository, please be sure to review
our [organization-wide contributing guide](https://www.pyopensci.org/governance/CONTRIBUTING.html) which contains guidelines for
our [organization-wide contributing guide](https://www.pyopensci.org/handbook/CONTRIBUTING.html) which contains guidelines for
contributions.

This is a community resource. We welcome contributions in the form of issues and/or pull requests to this guide.
Expand Down
2 changes: 1 addition & 1 deletion code-of-conduct.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
All individuals participating in any pyOpenSci program such as our peer review process, need to abide by our code of conduct.

[Click here to
read our full code of conduct now.](https://www.pyopensci.org/governance/CODE_OF_CONDUCT.html)
read our full code of conduct now.](https://www.pyopensci.org/handbook/CODE_OF_CONDUCT.html)
20 changes: 11 additions & 9 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@

# Get the latest Git tag - there might be a prettier way to do this but...
try:
release_value = subprocess.check_output(["git", "describe", "--tags"]).decode("utf-8").strip()
release_value = (
subprocess.check_output(["git", "describe", "--tags"]).decode("utf-8").strip()
)
release_value = release_value[:4]
except subprocess.CalledProcessError:
release_value = "0.1" # Default value in case there's no tag
Expand Down Expand Up @@ -61,12 +63,12 @@
# Theme options
html_theme_options = {
"favicons": [
{
"rel": "icon",
"sizes": "16x16",
"href": "https://www.pyopensci.org/images/favicon.ico",
},
],
{
"rel": "icon",
"sizes": "16x16",
"href": "https://www.pyopensci.org/images/favicon.ico",
},
],
"announcement": "<p><a href='https://www.github.com/pyopensci/software-submission/'>Submit Your Python Package for Peer Review!</a></p>",
"external_links": [
{
Expand All @@ -78,8 +80,8 @@
"name": "Python Packaging Guide",
},
{
"url": "https://pyopensci.org/governance",
"name": "Governance",
"url": "https://pyopensci.org/handbook",
"name": "Handbook",
},
],
"icon_links": [
Expand Down
2 changes: 1 addition & 1 deletion how-to/editors-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ reviews has been considered and implemented

## Closing notes about the editorial process

- If the package raises a new issue for pyOpenSci policy, create an issue on [pyOpenSci's governance repo](https://github.com/pyOpenSci/governance).
- If the package raises a new issue for pyOpenSci policy, create an issue on [pyOpenSci's handbook repo](https://github.com/pyOpenSci/handbook).
- If the package review raises a new issue in our peer review process, please [open an issue in our peer review guide repo.](https://github.com/pyOpenSci/peer-review-guide).

## ✔️ OPTIONAL: Instructions for Submitting to JOSS
Expand Down
2 changes: 1 addition & 1 deletion how-to/reviewer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ our editors or to post a question on our [discourse forum](https://pyopensci.dis
```

Please be respectful and kind to the authors in your reviews. Our
[code of conduct](https://www.pyopensci.org/governance/CODE_OF_CONDUCT.html) is mandatory for everyone involved in our
[code of conduct](https://www.pyopensci.org/handbook/CODE_OF_CONDUCT.html) is mandatory for everyone involved in our
review process.

## A guide for new reviewers
Expand Down
2 changes: 1 addition & 1 deletion our-process/how-review-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ that package reviews move through the review process efficiently;
* Authors create, submit and improve their package;
* Reviewers, two per submission, examine the software code and user experience.

Our [governance documentation](https://www.pyopensci.org/governance) clarifies
Our [handbook documentation](https://www.pyopensci.org/handbook/) clarifies
the various roles that support running our peer review process.

## Software reviews are contained within [GitHub](https://www.github.com/pyOpenSci) issues
Expand Down
2 changes: 1 addition & 1 deletion partners/scientific-communities.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,4 +310,4 @@ Over time, this investment will yield significant rewards.

All our reviews are open on GitHub, ensuring transparency. Everyone
participating in the peer review process is also expected to adhere to [our
code of conduct.](https://www.pyopensci.org/governance/CODE_OF_CONDUCT.html)
code of conduct.](https://www.pyopensci.org/handbook/CODE_OF_CONDUCT.html)
Loading