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: additional repos to parse contributors #214

Merged
merged 2 commits into from
Aug 15, 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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@

## [Unreleased]

## [v0.3.6] - 2024-08-15

* Add: pyos Repos that contributors contribute to (@lwasser, #197)

## [v0.3.5] - 2024-08-15

This is a tiny release to add support for pr and issue aggregation in our metrics.

### Add

* Add: Endpoint variable to support both prs and issues to GitHubAPI (@lwasser)
* Add: Tests for the contributors module & file_io (@willingc)

## [v0.3.4] - 2024-08-01

Expand Down
9 changes: 5 additions & 4 deletions src/pyosmeta/cli/update_contributors.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
from pyosmeta.github_api import GitHubAPI
from pyosmeta.models import PersonModel

# TODO - https://stackoverflow.com
# /questions/55762673/how-to-parse-list-of-models-with-pydantic
# I can use TypeAdapter to convert the json data to model objects!


def main():
update_dates = False
Expand All @@ -36,6 +32,11 @@ def main():
"pyopensci.github.io",
"software-review",
"pyosmeta",
"handbook",
"software-submission",
"peer-review-metrics",
"pyosPackage",
"pyos-sphinx-theme",
]
json_files = create_paths(repos)

Expand Down