Skip to content

Commit 6f46f2b

Browse files
committed
lint: sort dependencies in all setup.py
1 parent 6912077 commit 6f46f2b

File tree

11 files changed

+52
-52
lines changed

11 files changed

+52
-52
lines changed

_delphi_utils_python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"pandas>=1.1.0",
1919
"pydocstyle",
2020
"pylint==2.8.3",
21-
"pytest",
2221
"pytest-cov",
22+
"pytest",
2323
"requests-mock",
2424
"slackclient",
2525
"structlog",

_template_python/setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
from setuptools import find_packages
33

44
required = [
5+
"covidcast",
56
"darker[isort]~=2.1.1",
7+
"delphi-utils",
68
"numpy",
79
"pandas",
810
"pydocstyle",
9-
"pytest",
10-
"pytest-cov",
1111
"pylint==2.8.3",
12-
"delphi-utils",
13-
"covidcast"
12+
"pytest-cov",
13+
"pytest",
1414
]
1515

1616
setup(

changehc/setup.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
from setuptools import find_packages
33

44
required = [
5+
"boto3",
6+
"covidcast",
57
"darker[isort]~=2.1.1",
8+
"delphi-utils",
9+
"moto~=4.2.14",
610
"numpy",
711
"pandas",
12+
"paramiko",
813
"pyarrow",
914
"pydocstyle",
10-
"pytest",
11-
"pytest-cov",
1215
"pylint==2.8.3",
13-
"delphi-utils",
14-
"covidcast",
15-
"boto3",
16-
"moto~=4.2.14",
17-
"paramiko",
16+
"pytest-cov",
17+
"pytest",
1818
]
1919

2020
setup(

claims_hosp/setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
from setuptools import find_packages
33

44
required = [
5+
"covidcast",
56
"darker[isort]~=2.1.1",
7+
"delphi-utils",
68
"numpy",
79
"pandas",
8-
"pyarrow",
910
"paramiko",
11+
"pyarrow",
1012
"pydocstyle",
11-
"pytest",
12-
"pytest-cov",
1313
"pylint==2.8.3",
14-
"delphi-utils",
15-
"covidcast",
14+
"pytest-cov",
15+
"pytest",
1616
]
1717

1818
setup(

doctor_visits/setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
required = [
55
"darker[isort]~=2.1.1",
6+
"delphi-utils",
67
"numpy",
78
"pandas",
89
"paramiko",
9-
"scikit-learn",
10-
"pytest",
11-
"pytest-cov",
1210
"pylint==2.8.3",
13-
"delphi-utils",
11+
"pytest-cov",
12+
"pytest",
13+
"scikit-learn",
1414
]
1515

1616
setup(

google_symptoms/setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33

44
required = [
55
"darker[isort]~=2.1.1",
6+
"db-dtypes",
7+
"delphi-utils",
8+
"freezegun",
69
"mock",
710
"numpy",
11+
"pandas-gbq",
812
"pandas",
913
"pydocstyle",
10-
"pytest",
11-
"pytest-cov",
1214
"pylint==2.8.3",
13-
"delphi-utils",
14-
"freezegun",
15-
"pandas-gbq",
16-
"db-dtypes",
15+
"pytest-cov",
16+
"pytest",
1717
]
1818

1919
setup(

hhs_hosp/setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
from setuptools import find_packages
33

44
required = [
5+
"covidcast",
56
"darker[isort]~=2.1.1",
7+
"delphi-epidata",
8+
"delphi-utils",
69
"freezegun",
710
"numpy",
811
"pandas",
912
"pydocstyle",
10-
"pytest",
11-
"pytest-cov",
1213
"pylint==2.8.3",
13-
"delphi-utils",
14-
"covidcast",
15-
"delphi-epidata",
14+
"pytest-cov",
15+
"pytest",
1616
]
1717

1818
setup(

nchs_mortality/setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
required = [
55
"darker[isort]~=2.1.1",
6+
"delphi-utils",
7+
"epiweeks",
8+
"freezegun",
69
"numpy",
710
"pandas",
811
"pydocstyle",
9-
"pytest",
10-
"pytest-cov",
1112
"pylint==2.8.3",
12-
"delphi-utils",
13+
"pytest-cov",
14+
"pytest",
1315
"sodapy",
14-
"epiweeks",
15-
"freezegun",
1616
]
1717

1818
setup(

nwss_wastewater/setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33

44
required = [
55
"darker[isort]~=2.1.1",
6+
"delphi-utils",
7+
"epiweeks",
8+
"freezegun",
69
"numpy",
710
"pandas",
811
"pydocstyle",
9-
"pytest",
10-
"pytest-cov",
1112
"pylint==2.8.3",
12-
"delphi-utils",
13+
"pytest-cov",
14+
"pytest",
1315
"sodapy",
14-
"epiweeks",
15-
"freezegun",
1616
]
1717

1818
setup(

quidel_covidtest/setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
from setuptools import find_packages
33

44
required = [
5+
"covidcast",
56
"darker[isort]~=2.1.1",
7+
"delphi-utils",
8+
"imap-tools",
69
"numpy",
10+
"openpyxl",
711
"pandas",
812
"pyarrow",
913
"pydocstyle",
10-
"pytest",
11-
"pytest-cov",
1214
"pylint==2.8.3",
13-
"delphi-utils",
14-
"imap-tools",
15+
"pytest-cov",
16+
"pytest",
1517
"xlrd==1.2.0",
16-
"covidcast",
17-
"openpyxl",
1818
]
1919

2020
setup(

sir_complainsalot/setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
from setuptools import find_packages
33

44
required = [
5+
"covidcast",
56
"darker[isort]~=2.1.1",
7+
"delphi-utils",
68
"pandas",
7-
"pytest",
8-
"pytest-cov",
99
"pylint==2.8.3",
10-
"delphi-utils",
10+
"pytest-cov",
11+
"pytest",
1112
"slackclient",
12-
"covidcast",
1313
]
1414

1515
setup(

0 commit comments

Comments
 (0)