|
8 | 8 |
|
9 | 9 | nox.options.reuse_existing_virtualenvs = True
|
10 | 10 | nox.options.sessions = ["tests", "lint", "docs"]
|
11 |
| -python = ["3.12"] |
| 11 | +python_version = ["3.13"] |
12 | 12 |
|
13 | 13 | prettier_command = [
|
14 | 14 | "npx",
|
@@ -51,7 +51,7 @@ def js_tests(session):
|
51 | 51 | session.run("yarn", "build", external=True)
|
52 | 52 |
|
53 | 53 |
|
54 |
| -@nox.session(reuse_venv=True, python=python) |
| 54 | +@nox.session(reuse_venv=True, python=python_version) |
55 | 55 | def tests(session):
|
56 | 56 | python_tests(session)
|
57 | 57 | js_tests(session)
|
@@ -162,11 +162,11 @@ def publish_docs(session):
|
162 | 162 | session.run("mkdocs", "gh-deploy")
|
163 | 163 |
|
164 | 164 |
|
165 |
| -@nox.session(reuse_venv=True, python="3.12") |
| 165 | +@nox.session(reuse_venv=True, python=python_version) |
166 | 166 | def build_executables_current_platform(session):
|
167 | 167 | session.run("yarn", "install", external=True)
|
168 | 168 | session.run("yarn", "build", external=True)
|
169 |
| - session.install(".", "PyInstaller==6.1") |
| 169 | + session.install(".", "PyInstaller==6.14") |
170 | 170 | session.run("python", "make_executable.py")
|
171 | 171 | session.notify("build_pex")
|
172 | 172 |
|
|
0 commit comments