File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ Typical workflow (changes that involve Rust):
99991. Make a change to Rust code.
1001002. Run ``just compile-and-test ``. This will compile the Rust code, then run Rust and Python tests in the default version.
101101
102- There are also version-specific test commands (e.g. ``just test-3-13 ``) - run ``just help `` to see which ones.
102+ There are also version-specific test commands (e.g. ``just test-3-14 ``) - run ``just help `` to see which ones.
103103
104104Working with documentation
105105--------------------------
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ test-python:
3232
3333# Runs tests under all supported Python versions, plus Rust.
3434[group (' testing' )]
35- test-all : test-python-3-9 test-python-3-10 test-python-3-11 test-python-3-12 test-python-3-13 test-rust
35+ test-all : test-python-3-9 test-python-3-10 test-python-3-11 test-python-3-12 test-python-3-13 test-python-3-14 test- rust
3636
3737# Runs tests under Python 3.9.
3838[group (' testing' )]
@@ -59,6 +59,11 @@ test-python-3-12:
5959test-python-3-13 :
6060 UV_PYTHON=3.13 just test-python
6161
62+ # Runs tests under Python 3.14.
63+ [group (' testing' )]
64+ test-python-3-14 :
65+ UV_PYTHON=3.14 just test-python
66+
6267# Format the Rust code.
6368[group (' formatting' )]
6469[working-directory : ' rust' ]
You can’t perform that action at this time.
0 commit comments