|
53 | 53 | "recommonmark", |
54 | 54 | ) |
55 | 55 |
|
56 | | -UNIT_TEST_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] |
57 | | -UNIT_TEST_LANGCHAIN_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] |
58 | | -UNIT_TEST_AG2_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] |
59 | | -UNIT_TEST_LLAMA_INDEX_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] |
| 56 | +UNIT_TEST_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"] |
| 57 | +UNIT_TEST_LANGCHAIN_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"] |
| 58 | +UNIT_TEST_AG2_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"] |
| 59 | +UNIT_TEST_LLAMA_INDEX_PYTHON_VERSIONS = ["3.10", "3.11", "3.12", "3.13", "3.14"] |
60 | 60 | PYTHON_TO_RAY_VERSIONS = { |
61 | 61 | "3.10": ["2.9.3", "2.33.0", "2.42.0"], |
62 | 62 | "3.11": ["2.42.0", "2.47.1"], |
@@ -454,12 +454,12 @@ def cover(session): |
454 | 454 | test runs (not system test runs), and then erases coverage data. |
455 | 455 | """ |
456 | 456 | session.install("coverage", "pytest-cov") |
457 | | - session.run("coverage", "report", "--show-missing", "--fail-under=85") |
| 457 | + session.run("coverage", "report", "--show-missing", "--fail-under=75") |
458 | 458 |
|
459 | 459 | session.run("coverage", "erase") |
460 | 460 |
|
461 | 461 |
|
462 | | -@nox.session(python="3.9") |
| 462 | +@nox.session(python=DEFAULT_PYTHON_VERSION) |
463 | 463 | def docs(session): |
464 | 464 | """Build the docs for this library.""" |
465 | 465 |
|
@@ -519,7 +519,7 @@ def docfx(session): |
519 | 519 | ) |
520 | 520 |
|
521 | 521 |
|
522 | | -@nox.session(python="3.9") |
| 522 | +@nox.session(python=DEFAULT_PYTHON_VERSION) |
523 | 523 | def gemini_docs(session): |
524 | 524 | """Build the docs for library related to Gemini.""" |
525 | 525 |
|
|
0 commit comments