Skip to content

Commit

Permalink
Fix document; upgrade CI Python to 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
zjkmxy committed Oct 17, 2024
1 parent ffaffdc commit 5bff37a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.12', 'pypy-3.10']
python-version: ['3.13', 'pypy-3.10']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 3 additions & 1 deletion docs/src/lvs/binary-format.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This page describes version ``0x00011000``.

.. code-block:: abnf
LvsModel = LVS-MODEL-TYPE TLV-LENGTH
LvsModel =
Version
StartId
NamedPatternCnt
Expand Down Expand Up @@ -181,3 +181,5 @@ python-ndn provides the following built-in functions:

- ``$eq``: compares two components.
- ``$eq_type``: compares the type of two components.

The details of user functions is up to specific implementation.

0 comments on commit 5bff37a

Please sign in to comment.