We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb146f8 commit bba1fcfCopy full SHA for bba1fcf
2 files changed
src/requirements.txt
@@ -7,6 +7,6 @@ pytest-cov==5.0.0
7
sqlfluff==1.4.5
8
9
# sql/util/* dependencies
10
-pandas==2.2.2
+pandas==2.2.3
11
google-cloud-bigquery==3.25.0
12
requests==2.32.3
src/server/helpers.py
@@ -306,7 +306,7 @@ def accentless_sort(value):
306
def get_file_date_info(file, type):
307
timestamps_config = get_timestamps_config()
308
# Default Published and Last Updated to today
309
- today = datetime.datetime.utcnow().isoformat(timespec='milliseconds')
+ today = datetime.datetime.now(datetime.UTC).isoformat(timespec='milliseconds')
310
if type == "date_published" or type == "date_modified":
311
return timestamps_config.get(file, {}).get(type, today)
312
else:
0 commit comments