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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
timeout-minutes: 10

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 All @@ -41,4 +41,4 @@ jobs:
pip install -e .
- name: Test with pytest
run: |
pytest
pytest -v -rs
11 changes: 9 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
Change Log
==========

Version 0.12.0 (not released yet)
---------------------------------
Version 0.12.0 (2026-03-06)
---------------------------

New features:

- improved XPath support:

- support .// and ..
- support [position]

Other changes:

Expand Down
6 changes: 3 additions & 3 deletions scripts/upload-pypi
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ if [ "$R" = "" ]; then
fi

if [ "$2" = "test" ]; then
export TWINE_REPOSITORY=testpypi
export TWINE_REPOSITORY=testemeraldtree
else
export TWINE_REPOSITORY=pypi
export TWINE_REPOSITORY=emeraldtree
fi

D=dist/emeraldtree-$R.tar.gz

twine upload --repository=emeraldtree "$D"
twine upload "$D"