Skip to content

Commit bba1fcf

Browse files
authored
Support Pythin 3.13 (#3926)
1 parent cb146f8 commit bba1fcf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ pytest-cov==5.0.0
77
sqlfluff==1.4.5
88

99
# sql/util/* dependencies
10-
pandas==2.2.2
10+
pandas==2.2.3
1111
google-cloud-bigquery==3.25.0
1212
requests==2.32.3

src/server/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def accentless_sort(value):
306306
def get_file_date_info(file, type):
307307
timestamps_config = get_timestamps_config()
308308
# Default Published and Last Updated to today
309-
today = datetime.datetime.utcnow().isoformat(timespec='milliseconds')
309+
today = datetime.datetime.now(datetime.UTC).isoformat(timespec='milliseconds')
310310
if type == "date_published" or type == "date_modified":
311311
return timestamps_config.get(file, {}).get(type, today)
312312
else:

0 commit comments

Comments
 (0)