Skip to content

Commit

Permalink
Fix docker build for admin
Browse files Browse the repository at this point in the history
  • Loading branch information
jhh committed Jan 31, 2024
1 parent c4d28d4 commit e179090
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 28 deletions.
2 changes: 1 addition & 1 deletion admin/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
in
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
packages = with pkgs; [
poetry
];
};
Expand Down
127 changes: 122 additions & 5 deletions admin/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion admin/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ deadeye-server = "deadeye.scripts.server:main"

[tool.poetry.dependencies]
click = "~8.0"
eventlet = "~0.33"
flask = "~2.0"
flask-socketio = "~5.1"
pynetworktables = "~2021.0"
python = "^3.10"
python = "^3.9.0"
python-dotenv = "^0.18"
werkzeug = "^2.3.0"
dnspython = "2.2.1"

[tool.poetry.dev-dependencies]
black = "*"
Expand Down
41 changes: 20 additions & 21 deletions admin/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
bidict==0.21.4; python_version >= "3.6"
click==8.0.3; python_version >= "3.6"
colorama==0.4.4; python_version >= "3.6" and python_full_version < "3.0.0" and platform_system == "Windows" or platform_system == "Windows" and python_version >= "3.6" and python_full_version >= "3.5.0"
dataclasses==0.8; python_version >= "3.6" and python_version < "3.7"
dnspython==2.2.0; python_version >= "3.6" and python_version < "4.0"
eventlet==0.32.0
flask-socketio==5.1.1; python_version >= "3.6"
flask==2.0.2; python_version >= "3.6"
greenlet==1.1.2; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
importlib-metadata==4.8.3; python_version < "3.8" and python_version >= "3.6"
itsdangerous==2.0.1; python_version >= "3.6"
jinja2==3.0.3; python_version >= "3.6"
markupsafe==2.0.1; python_version >= "3.6"
pynetworktables==2021.0.0; python_version >= "3.5"
python-dotenv==0.18.0
python-engineio==4.3.1; python_version >= "3.6"
python-socketio==5.5.1; python_version >= "3.6"
six==1.16.0; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.3.0"
typing-extensions==4.0.1; python_version < "3.8" and python_version >= "3.6"
werkzeug==2.0.2; python_version >= "3.6"
zipp==3.6.0; python_version < "3.8" and python_version >= "3.6"
bidict==0.22.1 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
click==8.0.4 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
colorama==0.4.6 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" and platform_system == "Windows"
dnspython==2.2.1 ; python_full_version >= "3.9.0" and python_version < "4.0"
eventlet==0.33.3 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
flask-socketio==5.1.2 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
flask==2.0.3 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
greenlet==3.0.3 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
h11==0.14.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
itsdangerous==2.1.2 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
jinja2==3.1.3 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
markupsafe==2.1.4 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
pynetworktables==2021.0.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
python-dotenv==0.18.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
python-engineio==4.8.2 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
python-socketio==5.11.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
simple-websocket==1.0.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
six==1.16.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
werkzeug==2.3.8 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"
wsproto==1.2.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0"

0 comments on commit e179090

Please sign in to comment.