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 .
make install

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

- name: Run coverage
run: |
coverage run --source=src/odict --omit=src/odict/bench.py -m odict.tests
coverage report --fail-under=100
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
17 changes: 15 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
Changes
=======

1.9.1 (unreleased)
2.0.0 (unreleased)
------------------

- Nothing changed yet.
- Improve ``__len__`` function to use underlying dict implementation directly.
[rnix]

- Deprecate ``_odict``. user ``_base_odict`` instead.
[rnix]

- Rename ``_dict_impl`` to ``_dict_cls`` and ``_list_factory`` to ``_list_cls``.
[rnix]

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

- Drop Python 2 support.
[rnix]


1.9.0 (2022-05-15)
Expand Down
4 changes: 0 additions & 4 deletions MANIFEST.in

This file was deleted.

Loading