diff --git a/.flake8 b/.flake8 index f63765b0..5a74f2be 100644 --- a/.flake8 +++ b/.flake8 @@ -1,3 +1,4 @@ [flake8] max-line-length = 88 -ignore = E501, E203, W503, E402, E231 # line length, whitespace before ':', line break before binary operator, module level import not at top of file +ignore = E501, E203, W503, E402, E231 +# line length, whitespace before ':', line break before binary operator, module level import not at top of file diff --git a/noxfile.py b/noxfile.py index 4414a8cf..ae914547 100644 --- a/noxfile.py +++ b/noxfile.py @@ -8,7 +8,7 @@ nox.options.reuse_existing_virtualenvs = True nox.options.sessions = ["tests", "lint", "docs"] -python = ["3.10"] +python = ["3.11"] prettier_command = [ "npx", @@ -25,7 +25,7 @@ "black==22.3.0", "vulture", "flake8", - "mypy==0.782", + "mypy==1.2.0", "check-manifest", ] vulture_whitelist = ".vulture_whitelist.py" @@ -162,11 +162,11 @@ def publish_docs(session): session.run("mkdocs", "gh-deploy") -@nox.session(reuse_venv=True, python="3.10") +@nox.session(reuse_venv=True, python="3.11") def build_executables_current_platform(session): session.run("yarn", "install", external=True) session.run("yarn", "build", external=True) - session.install(".", "PyInstaller==5.1") + session.install(".", "PyInstaller==5.10.1") session.run("python", "make_executable.py") session.notify("build_pex") diff --git a/requirements.txt b/requirements.txt index b5bcbe92..d4cbd638 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,7 +22,7 @@ flask-compress==1.10.1 # via -r requirements.in flask-socketio==5.1.1 # via -r requirements.in -greenlet==1.1.2 +greenlet==2.0.2 # via eventlet itsdangerous==2.0.1 # via flask