Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Serializations for mixed content documents #94

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
version: 2

build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: 3
python: "3.12"

formats: all

Expand Down
3 changes: 2 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ benchmarks:
black:
black benchmarks _delb delb integration-tests tests

# runs tests (except loaders) and reports uncovered lines
# runs tests and reports coverage
coverage-report:
hatch run unit-tests:coverage-report

Expand Down Expand Up @@ -53,6 +53,7 @@ release: tests

# watch, build and serve HTML documentation at 0.0.0.0:8000
serve-docs:
mkdir -p {{ justfile_directory() }}/docs/build/html || true
hatch run docs:serve

# build and open HTML documentation
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Features
- Consistent design regarding names and callables' signatures.
- Shadows comments and processing instructions by default.
- Querying with XPath and CSS expressions.
- Serializations that may fulfil the promise of XML's well-readability to an
unwitnessed degree and even don't mess up whitespace.


Development status
Expand Down
5 changes: 5 additions & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,8 @@
- drop any remaining checks against lxml equivalents
- remove all remaining deprecated features
- performance optimizations

## Unscheduled

- a proper serialization implementation with focus on performance and possibly
extendability
Loading