Skip to content
Open
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
15 changes: 5 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@ jobs:
- macos-latest

python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "pypy3.9"
- "3.13"
- "3.14"

steps:
- uses: actions/checkout@v4
Expand All @@ -34,15 +32,12 @@ jobs:

- name: Install
run: |
pip install coverage
pip install -e .[test]
make install

- name: Run tests
run: |
python --version
python -m plumber.tests.__init__
make test

- name: Run coverage
run: |
coverage run -m plumber.tests.__init__
coverage report --fail-under=98
make coverage
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
/htmlcov/
/requirements-mxdev.txt
/venv
/build
6 changes: 5 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ Changes
1.8 (unreleased)
----------------

- Nothing changed yet.
- Refactor package layout to use ``pyproject.toml`` and implicit namespace packages.
[rnix]

- Drop Python 2 support.
[rnix]


1.7 (2022-03-17)
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ License
=======

Copyright (c) 2011-2021, BlueDynamics Alliance, Austria, Germany, Switzerland
Copyright (c) 2021-2022, Node Contributors
Copyright (c) 2021-2025, Node Contributors
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
4 changes: 0 additions & 4 deletions MANIFEST.in

This file was deleted.

Loading