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
1 change: 0 additions & 1 deletion appointment/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ class Meta:

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields['user'].queryset = get_user_model().objects.filter(is_staff=True)


@admin.register(StaffMember)
Expand Down
2 changes: 1 addition & 1 deletion check_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import requests

package_name = "django-appointment"
current_version = "2.1.0"
current_version = "2.1.1"

response = requests.get(f"https://pypi.org/pypi/{package_name}/json")
if response.status_code == 200:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = django-appointment
version = 2.1.0
version = 2.1.1
description = Managing appointment scheduling with customizable slots, staff features, and conflict handling.
url = https://github.com/adamspd/django-appointment
author = Adams Pierre David
Expand Down