Skip to content
Open
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
1 change: 1 addition & 0 deletions src/=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Requirement already satisfied: pycparser in /home/arnavdeep/.virtualenvs/src-qzoy/lib/python3.10/site-packages (2.20)
6 changes: 6 additions & 0 deletions src/pkg_update.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import pkg_resources
from subprocess import call

packages=[dist.project_name for
dist in pkg_resources.working_set]
call("pip install --upgrade " + ' '.join(packages), shell=True)
2 changes: 1 addition & 1 deletion src/project/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class ProjectUpdateView(LoginRequiredMixin, UpdateView):

class TeamListView(LoginRequiredMixin, ListView):
model = Team
template_name = 'proeject/team_list.html'
template_name = 'project/team_list.html'
context_object_name = 'teams'

def get_queryset(self):
Expand Down
1 change: 0 additions & 1 deletion src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ backcall==0.2.0
billiard==3.3.0.23
celery==3.1.26.post2
certifi==2020.11.8
cffi==1.14.0
decorator==4.4.2
Django==3.1.6
django-appconf==1.0.4
Expand Down
1 change: 1 addition & 0 deletions src/settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@