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
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, '3.10', 3.11, 3.12]
python-version: [3.9, '3.10', 3.11, 3.12, 3.13, 3.14]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changes

## 4.0

- Removed dependence on `attrs` and `python-dateutil`.
- Removed deprecated functionality.


### Breaking changes

Due to removing dependence on `attrs`, some previously `attr.s` decorated classes are now simple
dataclasses. Thus, subclassing them may break or behave differently than before.


## 3.24.4

- Fixed bug introduced by supporting escaped brackets in markdown link labels ...
Expand Down
5 changes: 5 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ tox -r
```shell
flake8 src/clldutils
```
-
- Make sure pylint passes with a score of 10:
```shell
pylint src/clldutils
```

- Make sure the docs render:
```shell
Expand Down
7 changes: 0 additions & 7 deletions docs/attrlib.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Follow the links below for documentation of the clldutils Python API.
:caption: Contents:

apilib
attrlib
clilib
color
coordinates
Expand Down
Loading