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 0c78acc commit 6b6416cCopy full SHA for 6b6416c
pandas_gbq/gbq.py
@@ -1460,12 +1460,21 @@ def create_user_agent(
1460
1461
Returns (str):
1462
Customized user agent string.
1463
+
1464
+ Deprecation Warning:
1465
+ In a future major release, the default delimiter will be changed to
1466
+ a `/` in accordance with RFC9110.
1467
"""
1468
import pandas as pd
1469
1470
if rfc9110_delimiter:
1471
delimiter = "/"
1472
else:
1473
+ warnings.warn(
1474
+ "In a future major release, the default delimiter will be "
1475
+ "changed to a `/` in accordance with RFC9110",
1476
+ PendingDeprecationWarning,
1477
+ )
1478
delimiter = "-"
1479
1480
identity = f"pandas{delimiter}{pd.__version__}"
0 commit comments