Skip to content
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
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test

on:
pull_request:
branches:
- main
- develop

jobs:

test:
name: Test for Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3"]

steps:
- uses: actions/checkout@v6.0.2

- name: Install uv
uses: astral-sh/setup-uv@v7.3.0
with:
enable-cache: true
cache-dependency-glob: "uv.lock"

- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync --all-groups

- name: Run tests
run: uv run pytest
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Python GEDCOM Parser - Changelog

## [v1.1.0](https://github.com/nickreynke/python-gedcom/releases/tag/v1.1.0)

### Changes:

- Migrated to `uv` for local development and package management.
- Added GitHub Actions workflow for automated testing on push and pull requests.
- Moved project metadata from `setup.py` and `Pipfile` to `pyproject.toml`.
- Replaced `tox` with `uv run pytest` for testing.
- Updated minimum supported Python version to 3.8.
- Re-generated docs via `uv run pdoc3 --html -o docs/ gedcom --force`.

## [v1.0.0](https://github.com/nickreynke/python-gedcom/releases/tag/v1.0.0)

### Changes:
Expand Down
20 changes: 0 additions & 20 deletions MANIFEST.in

This file was deleted.

16 changes: 0 additions & 16 deletions Pipfile

This file was deleted.

288 changes: 0 additions & 288 deletions Pipfile.lock

This file was deleted.

Loading