Merge pull request #297816 from fabaff/scmrepo-bump

python311Packages.scmrepo: 3.2.0 -> 3.3.0
This commit is contained in:
Robert Scott 2024-03-21 23:44:34 +00:00 committed by GitHub
commit d4fca22ac8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 11 deletions

View File

@ -4,6 +4,7 @@
, fetchFromGitHub
, dvc-objects
, fsspec
, funcy
, pythonOlder
, pythonRelaxDepsHook
, setuptools-scm
@ -12,25 +13,26 @@
buildPythonPackage rec {
pname = "dvc-http";
version = "2.32.0";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "iterative";
repo = pname;
repo = "dvc-http";
rev = "refs/tags/${version}";
hash = "sha256-ru/hOFv/RcS/7SBpTJU8xFxdllmaiH4dV1ouS6GGKkY=";
};
nativeBuildInputs = [
build-system = [
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
aiohttp-retry
dvc-objects
fsspec
aiohttp-retry
funcy
];
# Currently it's not possible to run the tests

View File

@ -19,24 +19,24 @@
buildPythonPackage rec {
pname = "scmrepo";
version = "3.2.0";
format = "pyproject";
version = "3.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "iterative";
repo = pname;
repo = "scmrepo";
rev = "refs/tags/${version}";
hash = "sha256-A09nuT8qxganDYiJNXhdhmnFKUeeVNYQKdHdReSnnac=";
hash = "sha256-vAfqCr1/3S0yZ0wPDxSZ6b6NrcJxt7Lj7oCsTzAXX1k=";
};
nativeBuildInputs = [
build-system = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
asyncssh
dulwich
dvc-http