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

add: ec notes to the handbook for 2024 #88

Merged
merged 2 commits into from
Aug 22, 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
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,8 @@ repos:
rev: v2.3.0
hooks:
- id: codespell

- repo: https://github.com/errata-ai/vale
rev: v3.7.0
hooks:
- id: vale
32 changes: 32 additions & 0 deletions .vale.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Configuration file for using Vale in the python-package-guide repository
#
# To disable checks on parts of a MarkDown or HTML file, delimit the section
# using these HTML comments:
# to disabled Vale checks after this line: <!-- vale off -->
# to enable Vale checks after this line: <!-- vale on -->
#
# To disable checks based on MarkDown scope, see IgnoredScopes.
# To disable checks on certain HTML elements, see IgnoredClasses.
#
# More information about the configuration can be found here:
# https://vale.sh/docs/topics/config


# Path to the styles directory, where style rules are defined
StylesPath = vale-styles

# Path to a dictionary folders inside the StylesPath config subdirectory. This
# folder can contain two files, accept.txt and reject.txt, with one word per
# line. These words will be used to check for spelling mistakes in addition to
# the internal dictionary, if the 'Vale' ruleset is enabled (see below)
# See https://vale.sh/docs/topics/vocab/#folder-structure for more details
Vocab = sample


# Checks are defined in sections by file type, like the one below for
# MarkDown. In each section you can enable groups of style rules, defined in folders
# inside the StylesPath directory.
# Use 'Vale' to enable the internal style rules and checks.

[*.md]
BasedOnStyles = pyos-styles
151 changes: 74 additions & 77 deletions community/events/sprints.md

Large diffs are not rendered by default.

21 changes: 16 additions & 5 deletions community/index.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
# Organization Handbook
# Community Handbook

pyOpenSci has built a vibrant open science community of practice. This
community:

1. helps scientists develop the open science skills needed to make their workflows more open and collaborative.
2. runs a Python software peer review process that reviews scientific software.
3. partners and leverage the work of other communities so we can learn and move forward together.

In this section of the handbook, we describe the platforms, processes and
approaches that we use to engage with both scientists and the broader
scientific Python community.

:::{toctree}
:hidden:
:caption: Social Media Section
:maxdepth: 2
:caption: Social Media

Social Media <social>
Slack <slack>
:::

:::{toctree}
:hidden:
:maxdepth: 2
:caption: GitHub Processes

GitHub <github/intro>
Expand All @@ -20,7 +31,7 @@ Continuous Integration (CI) <github/continuous-integration>
:::

:::{toctree}
:hidden:
:maxdepth: 2
:caption: pyOpenSci Events

Events <events/intro>
Expand Down
13 changes: 8 additions & 5 deletions reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@
pyOpenSci began officially meeting in the fall of 2018. Below
are the meeting notes from those early meetings.

:::{toctree}
caption: Executive Council Minutes
maxdepth: 1

2024 Executive Council Minutes <meeting-notes/executive-council/intro>
:::

```{toctree}
---
caption: All Meeting Notes
:::{toctree}
caption: Early Community Meeting Notes
maxdepth: 1
---

2021 Notes <meeting-notes/2021/intro-2021>
2020 Notes <meeting-notes/2020/intro-2020>
2019 Notes <meeting-notes/2019/intro-2019>
2018 Notes <meeting-notes/2018/intro-2018>
```
:::
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Executive Council Minutes 2024

# pyOpenSci Executive Council Minutes 2024

## 2024-05-13 Executive Council Meeting Minutes

Present on 13 May 2024
Karen Cranston, Tracy Teal, Leah Wasser

Apologies
None

**Minutes for agenda items**
### Minutes for agenda items

* Update on package peer review
* 17 packages in active review
Expand Down
9 changes: 9 additions & 0 deletions reference/meeting-notes/executive-council/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# pyOpenSci Executive Council Minutes

:::{toctree}
:caption: Executive Council Minutes
:maxdepth: 1

2024-executive-council-minutes

:::
Empty file.
Empty file.
28 changes: 28 additions & 0 deletions vale-styles/pyos-styles/PyPI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
extends: substitution
message: Consider using '%s' instead of '%s'
level: warning
ignorecase: false
action:
name: replace
# swap maps tokens in form of bad: good
swap:
# lower case defined as regex to prevent false positives in URLs or other identifiers
- (?:\spypi[\.,]?\s): PyPI
- (?:\stestpypi[\.,;:]?\s): TestPyPI
- (?:\stest-pypi[\.,;:]?\s): TestPyPI
- \bpyopensci\b: pyOpenSci
- \bPyOpenSci\b: pyOpenSci
# other tests are defined with strings
- pyPi: PyPI
- pyPI: PyPI
- PYPI: PyPI
- PyPi: PyPI
- Pypi: PyPI
- testPyPI: TestPyPI
- testPYPI: TestPyPI
- TestPypi: TestPyPI
- TestPYPI: TestPyPI
- back-end: backend
- back end: backend
- front-end: frontend
- front end: frontend
Loading