1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-12-25 23:55:24 +00:00

Compare commits

..

5 commits

Author SHA1 Message Date
catborise
f4651d816d
Merge pull request #650 from catborise/master
fix urls for bus and capabilities
2024-06-24 10:25:48 +03:00
catborise
1edce931ed fix urls for bus and capabilities 2024-06-24 10:22:49 +03:00
catborise
b76b6e382e
Merge pull request #649 from catborise/master
update req
2024-06-24 09:34:25 +03:00
catborise
072a922c15 update requirements 2024-06-24 09:32:41 +03:00
catborise
ee2c55dac7 update chipset url 2024-06-24 08:53:01 +03:00
3 changed files with 19 additions and 19 deletions

View file

@ -59,17 +59,17 @@ urlpatterns = [
path("nwfilter/<str:nwfltr>/", nwfilter, name="nwfilter"),
path("virtsecrets/", secrets, name="virtsecrets"),
path(
"archs/<str:arch>/machines/",
"archs/<str:arch>/machines",
views.get_compute_machine_types,
name="machines",
),
path(
"archs/<str:arch>/machines/<str:machine>/disks/<str:disk>/buses/",
"archs/<str:arch>/machines/<str:machine>/disks/<str:disk>/buses",
views.get_compute_disk_buses,
name="buses",
),
path(
"archs/<str:arch>/machines/<str:machine>/capabilities/",
"archs/<str:arch>/machines/<str:machine>/capabilities",
views.get_dom_capabilities,
name="domcaps",
),

View file

@ -1,26 +1,26 @@
Django==4.2.11
Django==4.2.13
django_bootstrap5==24.2
django-bootstrap-icons==0.8.7
django-login-required-middleware==0.9.0
django-otp==1.5.0
django-qr-code==4.0.1
django-qr-code==4.1.0
django-auth-ldap==4.8.0
djangorestframework==3.15.1
drf-nested-routers==0.93.5
djangorestframework==3.15.2
drf-nested-routers==0.94.1
drf-yasg==1.21.7
eventlet==0.36.1
gunicorn==22.0.0
libsass==0.23.0
libvirt-python==10.2.0
lxml==5.2.1
libvirt-python==10.4.0
lxml==5.2.2
ldap3==2.9.1
markdown>=3.4.1
markdown==3.6
#psycopg2-binary
python-engineio==4.9.0
python-socketio==5.11.2
python-engineio==4.9.1
python-socketio==5.11.3
qrcode==7.4.2
rwlock==0.0.7
tzdata
websockify==0.11.0
whitenoise==6.6.0
zipp==3.18.1
websockify==0.12.0
whitenoise==6.7.0
zipp==3.19.2

View file

@ -1,9 +1,9 @@
-r ../conf/requirements.txt
coverage==7.5.0
django-debug-toolbar==4.3.0
coverage==7.5.4
django-debug-toolbar==4.4.2
django-debug-toolbar-template-profiler
pycodestyle==2.11.1
pycodestyle==2.12.0
pyflakes==3.2.0
pylint==3.1.0
pylint==3.2.3
yapf==0.40.2
black==24.4.2