python311Packages.gcsfs: 2023.4.0 -> 2024.2.0
https://github.com/fsspec/gcsfs/raw/2024.2.0/docs/source/changelog.rst
This commit is contained in:
parent
2723115b1f
commit
ee44ceb40e
1 changed files with 9 additions and 2 deletions
|
@ -19,7 +19,7 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "gcsfs";
|
||||
version = "2023.4.0";
|
||||
version = "2024.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
|||
owner = "fsspec";
|
||||
repo = pname;
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-FHS+g0SuYH9OPiE/+p2SHrsWfzBQ82GM6hTph8koh+o=";
|
||||
hash = "sha256-6O09lP2cWLzeMTBathb3O/tVGZPEHSqujfUPWZIBUJI=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -50,11 +50,18 @@ buildPythonPackage rec {
|
|||
vcrpy
|
||||
];
|
||||
|
||||
disabledTests =[
|
||||
# Cannot connect to host storage.googleapis.com:443
|
||||
"test_credentials_from_raw_token"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Tests require a running Docker instance
|
||||
"gcsfs/tests/test_core.py"
|
||||
"gcsfs/tests/test_mapping.py"
|
||||
"gcsfs/tests/test_retry.py"
|
||||
"gcsfs/tests/derived/gcsfs_test.py"
|
||||
"gcsfs/tests/test_inventory_report_listing.py"
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
|
|
Loading…
Reference in a new issue