Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Python 3.13 #3926

Merged
merged 1 commit into from
Nov 25, 2024
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
2 changes: 1 addition & 1 deletion src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ pytest-cov==5.0.0
sqlfluff==1.4.5

# sql/util/* dependencies
pandas==2.2.2
pandas==2.2.3
google-cloud-bigquery==3.25.0
requests==2.32.3
2 changes: 1 addition & 1 deletion src/server/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def accentless_sort(value):
def get_file_date_info(file, type):
timestamps_config = get_timestamps_config()
# Default Published and Last Updated to today
today = datetime.datetime.utcnow().isoformat(timespec='milliseconds')
today = datetime.datetime.now(datetime.UTC).isoformat(timespec='milliseconds')
if type == "date_published" or type == "date_modified":
return timestamps_config.get(file, {}).get(type, today)
else:
Expand Down
Loading