Merge pull request #133334 from fabaff/bump-clevercsv

This commit is contained in:
Sandro 2021-08-10 14:40:16 +02:00 committed by GitHub
commit 8b49862613
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "clevercsv";
version = "0.6.8";
version = "0.7.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "alan-turing-institute";
repo = "CleverCSV";
rev = "v${version}";
sha256 = "0jpgyh65zqr76sz2s63zsjyb49dpg2xdmf72jvpicw923bdzhqvp";
sha256 = "09ccgydnrfdgxjz6ph829l9q62jkzqrak0k6yjik2rvs33jn0dhc";
};
propagatedBuildInputs = [

View file

@ -21,12 +21,14 @@
, deepdiff
, pytestCheckHook
, pytest-cov
, pythonOlder
, websocket-client
}:
buildPythonPackage rec {
pname = "runway-python";
version = "0.6.1";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "runwayml";
@ -70,6 +72,8 @@ buildPythonPackage rec {
"test_file_deserialization_remote"
"test_file_deserialization_absolute_directory"
"test_file_deserialization_remote_directory"
# Fails with a decoding error at the moment
"test_inference_async"
] ++ lib.optionals (pythonAtLeast "3.9") [
# AttributeError: module 'base64' has no attribute 'decodestring
# https://github.com/runwayml/model-sdk/issues/99