Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f5d3299
feat: Introduce compatibility with native namespace packages
parthea Nov 14, 2023
06d7a9a
Update copyright year
parthea Nov 14, 2023
34196e1
removed pkg_resources from all test files and moved importlib into pa…
kiraksi Nov 16, 2023
8d5396a
feat: removed pkg_resources from all test files and moved importlib i…
kiraksi Nov 16, 2023
e905cbe
Adding no cover tag to test code
kiraksi Nov 16, 2023
43e89a6
reformatted with black
kiraksi Nov 16, 2023
bdbcdc9
undo revert
kiraksi Nov 20, 2023
86a97f7
perf: use the first page a results when `query(api_method="QUERY")` (…
tswast Nov 21, 2023
326f052
fix: ensure query job retry has longer deadline than API request dead…
tswast Nov 21, 2023
cbcde2f
fix: `load_table_from_dataframe` now assumes there may be local null …
tswast Nov 22, 2023
2a99358
chore: standardize samples directory - delete unneeded dependencies (…
kiraksi Nov 22, 2023
893704a
fix: move grpc, proto-plus and protobuf packages to extras (#1721)
kiraksi Nov 22, 2023
9331a7e
remove unnecessary version checks
kiraksi Nov 27, 2023
5c82dcf
undo bad commit, remove unneeded version checks
kiraksi Nov 27, 2023
f90e390
Revert "undo bad commit, remove unneeded version checks"
kiraksi Nov 27, 2023
47a95fb
Revert "remove unnecessary version checks"
kiraksi Nov 27, 2023
e8eea53
revert bad changes, remove pkg_resources from file
kiraksi Nov 27, 2023
95dbd07
after clarification, reimplement changes and ignore 3.12 tests
kiraksi Nov 27, 2023
fb9ea00
reformatted with black
kiraksi Nov 27, 2023
34259a7
Merge branch 'main' into remove-pkgresources
kiraksi Nov 27, 2023
90fd53b
removed minimum check
kiraksi Nov 27, 2023
c50eca3
updated pandas installed version check
kiraksi Nov 28, 2023
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
Prev Previous commit
Next Next commit
removed minimum check
  • Loading branch information
kiraksi committed Nov 27, 2023
commit 90fd53b00d02cbf000fa32cf8490c5c955d7872d
5 changes: 1 addition & 4 deletions tests/system/test_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,10 +312,7 @@ def test_load_table_from_dataframe_w_automatic_schema(bigquery_client, dataset_i
]


@pytest.mark.skipif(
PANDAS_INSTALLED_VERSION[0:2] in ["0."],
reason="Only `pandas version >=1.0.0` is supported",
)
@pytest.mark.skipif(pandas is None, reason="Requires `pandas`")
def test_load_table_from_dataframe_w_nullable_int64_datatype(
bigquery_client, dataset_id
):
Expand Down