Skip to content

Commit 04bb317

Browse files
authored
Merge pull request #8 from conestack/refactor-package-layout
Refactor package layout
2 parents 8d53d42 + c880a02 commit 04bb317

File tree

18 files changed

+218
-373
lines changed

18 files changed

+218
-373
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,11 @@ jobs:
1616
- macos-latest
1717

1818
python:
19-
- "3.7"
20-
- "3.8"
21-
- "3.9"
2219
- "3.10"
2320
- "3.11"
2421
- "3.12"
25-
- "pypy3.9"
22+
- "3.13"
23+
- "3.14"
2624

2725
steps:
2826
- uses: actions/checkout@v4
@@ -34,15 +32,12 @@ jobs:
3432

3533
- name: Install
3634
run: |
37-
pip install coverage
38-
pip install -e .[test]
35+
make install
3936
4037
- name: Run tests
4138
run: |
42-
python --version
43-
python -m plumber.tests.__init__
39+
make test
4440
4541
- name: Run coverage
4642
run: |
47-
coverage run -m plumber.tests.__init__
48-
coverage report --fail-under=98
43+
make coverage

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
/htmlcov/
88
/requirements-mxdev.txt
99
/venv
10+
/build

CHANGES.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
Changes
22
=======
33

4-
1.8 (unreleased)
5-
----------------
4+
2.0.0 (unreleased)
5+
------------------
6+
7+
- Refactor package layout to use ``pyproject.toml`` and implicit namespace packages.
8+
[rnix]
69

7-
- Nothing changed yet.
10+
- Drop Python 2 support.
11+
[rnix]
812

913

1014
1.7 (2022-03-17)

LICENSE.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ License
22
=======
33

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

88
Redistribution and use in source and binary forms, with or without

MANIFEST.in

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)