Merge pull request #299472 from r-ryantm/auto-update/dvc-with-remotes

dvc-with-remotes: 3.48.4 -> 3.49.0
This commit is contained in:
Fabian Affolter 2024-03-28 08:53:14 +01:00 committed by GitHub
commit 41ad182700
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -57,7 +57,7 @@
buildPythonPackage rec {
pname = "dvc";
version = "3.48.4";
version = "3.49.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -66,7 +66,7 @@ buildPythonPackage rec {
owner = "iterative";
repo = "dvc";
rev = "refs/tags/${version}";
hash = "sha256-vO+i0BU8mQuLfgb1rcGRmlb8gpHsRxgdwuJHRERA4Pw=";
hash = "sha256-Qu2+zTcTIPxLRZn1GB3Q6465kSEAuN+wessBVgxEdFU=";
};
pythonRelaxDeps = [
@ -76,17 +76,17 @@ buildPythonPackage rec {
postPatch = ''
substituteInPlace dvc/analytics.py \
--replace 'enabled = not os.getenv(DVC_NO_ANALYTICS)' 'enabled = False'
--replace-fail 'enabled = not os.getenv(DVC_NO_ANALYTICS)' 'enabled = False'
substituteInPlace dvc/daemon.py \
--subst-var-by dvc "$out/bin/dcv"
'';
nativeBuildInputs = [
build-system = [
pythonRelaxDepsHook
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
appdirs
colorama
configobj
@ -166,10 +166,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "Version Control System for Machine Learning Projects";
mainProgram = "dvc";
homepage = "https://dvc.org";
changelog = "https://github.com/iterative/dvc/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ cmcdragonkai fab ];
mainProgram = "dvc";
};
}