Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -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
8 changes: 4 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -25,7 +25,7 @@
"black==22.3.0",
"vulture",
"flake8",
"mypy==0.782",
"mypy==1.2.0",
"check-manifest",
]
vulture_whitelist = ".vulture_whitelist.py"
Expand Down Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down