##// END OF EJS Templates
build: updated rhodecode-tools requirement...
super-admin -
r4896:2711bc72 default
parent child Browse files
Show More
@@ -0,0 +1,12 b''
1 diff -rup rhodecode-tools-2.0.0-orig/requirements.txt rhodecode-tools-2.0.0/requirements.txt
2 --- rhodecode-tools-2.0.0/requirements-orig.txt 2021-03-11 12:34:45.000000000 +0100
3 +++ rhodecode-tools-2.0.0/requirements.txt 2021-03-11 12:34:56.000000000 +0100
4 @@ -40,8 +40,6 @@ ipython==5.1.0
5 ipdb==0.13.2
6 ipython==5.1.0
7
8 -## test related requirements
9 --r requirements_test.txt
10
11 ## uncomment to add the debug libraries
12 #-r requirements_debug.txt
@@ -1,7 +1,7 b''
1 diff -rup pytest-4.6.5-orig/setup.py pytest-4.6.5/setup.py
1 diff -rup pytest-4.6.9-orig/setup.py pytest-4.6.9/setup.py
2 --- pytest-4.6.5-orig/setup.py 2018-04-10 10:23:04.000000000 +0200
2 --- pytest-4.6.9-orig/setup.py 2018-04-10 10:23:04.000000000 +0200
3 +++ pytest-4.6.5/setup.py 2018-04-10 10:23:34.000000000 +0200
3 +++ pytest-4.6.9/setup.py 2018-04-10 10:23:34.000000000 +0200
4 @@ -24,7 +24,7 @@ INSTALL_REQUIRES = [
4 @@ -24,7 +24,7 @@ def main():
5 def main():
5 def main():
6 setup(
6 setup(
7 use_scm_version={"write_to": "src/_pytest/_version.py"},
7 use_scm_version={"write_to": "src/_pytest/_version.py"},
@@ -1,13 +1,13 b''
1 diff -rup rhodecode-tools-1.4.1-orig/setup.py rhodecode-tools-1.4.1/setup.py
1 diff -rup rhodecode-tools-2.0.0-orig/setup.py rhodecode-tools-2.0.0/setup.py
2 --- rhodecode-tools-1.4.1/setup-orig.py 2021-03-11 12:34:45.000000000 +0100
2 --- rhodecode-tools-2.0.0/setup-orig.py 2021-03-11 12:34:45.000000000 +0100
3 +++ rhodecode-tools-1.4.1/setup.py 2021-03-11 12:34:56.000000000 +0100
3 +++ rhodecode-tools-2.0.0/setup.py 2021-03-11 12:34:56.000000000 +0100
4 @@ -69,7 +69,7 @@ def _get_requirements(req_filename, excl
4 @@ -98,8 +98,7 @@ install_requirements = _get_requirements(
5 setup_requirements = []
6 install_requirements = _get_requirements(
7 'requirements.txt', exclude=['setuptools'])
8 -test_requirements = _get_requirements(
9 - 'requirements_test.txt')
10 +test_requirements = []
5
11
6
12
7 # requirements extract
13 def get_version():
8 -setup_requirements = ['pytest-runner']
9 +setup_requirements = ['pytest-runner==5.1.0']
10 install_requirements = _get_requirements(
11 'requirements.txt', exclude=['setuptools'])
12 -test_requirements = _get_requirements('requirements_test.txt')
13 -test_requirements = []
@@ -57,12 +57,6 b' self: super: {'
57 ];
57 ];
58 });
58 });
59
59
60 "future" = super."future".override (attrs: {
61 meta = {
62 license = [ pkgs.lib.licenses.mit ];
63 };
64 });
65
66 "testpath" = super."testpath".override (attrs: {
60 "testpath" = super."testpath".override (attrs: {
67 meta = {
61 meta = {
68 license = [ pkgs.lib.licenses.mit ];
62 license = [ pkgs.lib.licenses.mit ];
@@ -343,6 +337,7 b' self: super: {'
343 "rhodecode-tools" = super."rhodecode-tools".override (attrs: {
337 "rhodecode-tools" = super."rhodecode-tools".override (attrs: {
344 patches = [
338 patches = [
345 ./patches/rhodecode_tools/setuptools.patch
339 ./patches/rhodecode_tools/setuptools.patch
340 ./patches/rhodecode_tools/requirements.patch
346 ];
341 ];
347 });
342 });
348
343
@@ -1585,7 +1585,7 b' self: super: {'
1585 };
1585 };
1586 };
1586 };
1587 "pytest" = super.buildPythonPackage {
1587 "pytest" = super.buildPythonPackage {
1588 name = "pytest-4.6.5";
1588 name = "pytest-4.6.9";
1589 doCheck = false;
1589 doCheck = false;
1590 propagatedBuildInputs = [
1590 propagatedBuildInputs = [
1591 self."py"
1591 self."py"
@@ -1601,23 +1601,23 b' self: super: {'
1601 self."more-itertools"
1601 self."more-itertools"
1602 ];
1602 ];
1603 src = fetchurl {
1603 src = fetchurl {
1604 url = "https://files.pythonhosted.org/packages/2a/c6/1d1f32f6a5009900521b12e6560fb6b7245b0d4bc3fb771acd63d10e30e1/pytest-4.6.5.tar.gz";
1604 url = "https://files.pythonhosted.org/packages/ec/2e/1602fca477ab3ccb1952f07db0536b60b6afafec16eced8063b553001509/pytest-4.6.9.tar.gz";
1605 sha256 = "0iykwwfp4h181nd7rsihh2120b0rkawlw7rvbl19sgfspncr3hwg";
1605 sha256 = "0fgkmpc31nzy97fxfrkqbzycigdwxwwmninx3qhkzp81migggs0r";
1606 };
1606 };
1607 meta = {
1607 meta = {
1608 license = [ pkgs.lib.licenses.mit ];
1608 license = [ pkgs.lib.licenses.mit ];
1609 };
1609 };
1610 };
1610 };
1611 "pytest-cov" = super.buildPythonPackage {
1611 "pytest-cov" = super.buildPythonPackage {
1612 name = "pytest-cov-2.7.1";
1612 name = "pytest-cov-2.8.1";
1613 doCheck = false;
1613 doCheck = false;
1614 propagatedBuildInputs = [
1614 propagatedBuildInputs = [
1615 self."pytest"
1615 self."pytest"
1616 self."coverage"
1616 self."coverage"
1617 ];
1617 ];
1618 src = fetchurl {
1618 src = fetchurl {
1619 url = "https://files.pythonhosted.org/packages/bb/0f/3db7ff86801883b21d5353b258c994b1b8e2abbc804e2273b8d0fd19004b/pytest-cov-2.7.1.tar.gz";
1619 url = "https://files.pythonhosted.org/packages/13/8a/51f54b43a043c799bceca846594b9a310823a3e52df5ec27109cccba90f4/pytest-cov-2.8.1.tar.gz";
1620 sha256 = "0filvmmyqm715azsl09ql8hy2x7h286n6d8z5x42a1wpvvys83p0";
1620 sha256 = "0avzlk9p4nc44k7lpx9109dybq71xqnggxb9f4hp0l64pbc44ryc";
1621 };
1621 };
1622 meta = {
1622 meta = {
1623 license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.mit ];
1623 license = [ pkgs.lib.licenses.bsdOriginal pkgs.lib.licenses.mit ];
@@ -1640,18 +1640,18 b' self: super: {'
1640 };
1640 };
1641 };
1641 };
1642 "pytest-runner" = super.buildPythonPackage {
1642 "pytest-runner" = super.buildPythonPackage {
1643 name = "pytest-runner-5.1";
1643 name = "pytest-runner-5.2";
1644 doCheck = false;
1644 doCheck = false;
1645 src = fetchurl {
1645 src = fetchurl {
1646 url = "https://files.pythonhosted.org/packages/d9/6d/4b41a74b31720e25abd4799be72d54811da4b4d0233e38b75864dcc1f7ad/pytest-runner-5.1.tar.gz";
1646 url = "https://files.pythonhosted.org/packages/5b/82/1462f86e6c3600f2471d5f552fcc31e39f17717023df4bab712b4a9db1b3/pytest-runner-5.2.tar.gz";
1647 sha256 = "0ykfcnpp8c22winj63qzc07l5axwlc9ikl8vn05sc32gv3417815";
1647 sha256 = "0awll1bva5zy8cspsxcpv7pjcrdf5c6pf56nqn4f74vvmlzfgiwn";
1648 };
1648 };
1649 meta = {
1649 meta = {
1650 license = [ pkgs.lib.licenses.mit ];
1650 license = [ pkgs.lib.licenses.mit ];
1651 };
1651 };
1652 };
1652 };
1653 "pytest-sugar" = super.buildPythonPackage {
1653 "pytest-sugar" = super.buildPythonPackage {
1654 name = "pytest-sugar-0.9.2";
1654 name = "pytest-sugar-0.9.3";
1655 doCheck = false;
1655 doCheck = false;
1656 propagatedBuildInputs = [
1656 propagatedBuildInputs = [
1657 self."pytest"
1657 self."pytest"
@@ -1659,8 +1659,8 b' self: super: {'
1659 self."packaging"
1659 self."packaging"
1660 ];
1660 ];
1661 src = fetchurl {
1661 src = fetchurl {
1662 url = "https://files.pythonhosted.org/packages/55/59/f02f78d1c80f7e03e23177f60624c8106d4f23d124c921df103f65692464/pytest-sugar-0.9.2.tar.gz";
1662 url = "https://files.pythonhosted.org/packages/ba/35/edf24df4b2fe7d9005bdb9d166c18ae9cefd8b664e7fb2c8dfb7bc9db184/pytest-sugar-0.9.3.tar.gz";
1663 sha256 = "1asq7yc4g8bx2sn7yy974mhc9ywvaihasjab4inkirdwn9s7mn7w";
1663 sha256 = "1i0hv3h49zvl62jbiyjag84carbrp3zprqzxffdr291nxavvac0n";
1664 };
1664 };
1665 meta = {
1665 meta = {
1666 license = [ pkgs.lib.licenses.bsdOriginal ];
1666 license = [ pkgs.lib.licenses.bsdOriginal ];
@@ -17,7 +17,6 b' deform==2.0.8'
17 docutils==0.16.0
17 docutils==0.16.0
18 dogpile.cache==0.9.0
18 dogpile.cache==0.9.0
19 formencode==1.2.4
19 formencode==1.2.4
20 future==0.14.3
21 futures==3.0.2
20 futures==3.0.2
22 infrae.cache==1.0.1
21 infrae.cache==1.0.1
23 iso8601==0.1.12
22 iso8601==0.1.12
@@ -1,9 +1,9 b''
1 # test related requirements
1 # test related requirements
2 pytest==4.6.5
2 pytest==4.6.9
3 py==1.8.0
3 py==1.8.1
4 pytest-cov==2.7.1
4 pytest-cov==2.8.1
5 pytest-sugar==0.9.2
5 pytest-sugar==0.9.3
6 pytest-runner==5.1.0
6 pytest-runner==5.2.0
7 pytest-profiling==1.7.0
7 pytest-profiling==1.7.0
8 pytest-timeout==1.3.3
8 pytest-timeout==1.3.3
9 gprof2dot==2017.9.19
9 gprof2dot==2017.9.19
General Comments 0
You need to be logged in to leave comments. Login now