File tree Expand file tree Collapse file tree 4 files changed +49
-48
lines changed Expand file tree Collapse file tree 4 files changed +49
-48
lines changed Original file line number Diff line number Diff line change 24
24
- run : |
25
25
pytest ci/fireci
26
26
- run : |
27
- mypy --config-file ci/fireci/setup.cfg ci/fireci/
27
+ mypy --config-file ci/fireci/pyproject.toml ci/fireci/
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
- requires = [" setuptools ~= 58 .0" ]
2
+ requires = [" setuptools ~= 70 .0" ]
3
3
build-backend = " setuptools.build_meta"
4
+
5
+ [project ]
6
+ name = " fireci"
7
+ version = " 0.1"
8
+ dependencies = [
9
+ " protobuf==3.20.3" ,
10
+ " click==8.1.7" ,
11
+ " google-cloud-storage==2.18.2" ,
12
+ " mypy==1.6.0" ,
13
+ " numpy==1.24.4" ,
14
+ " pandas==1.5.3" ,
15
+ " PyGithub==1.58.2" ,
16
+ " pystache==0.6.0" ,
17
+ " requests==2.31.0" ,
18
+ " seaborn==0.12.2" ,
19
+ " PyYAML==6.0.1" ,
20
+ " termcolor==2.4.0" ,
21
+ " pytest"
22
+ ]
23
+
24
+ [project .scripts ]
25
+ fireci = " fireci.main:cli"
26
+
27
+ [tool .setuptools ]
28
+ packages = [" fireci" , " fireciplugins" ]
29
+
30
+ [tool .mypy ]
31
+ strict_optional = false
32
+
33
+ [[tool .mypy .overrides ]]
34
+ module = [
35
+ " google.cloud" ,
36
+ " matplotlib" ,
37
+ " matplotlib.pyplot" ,
38
+ " pandas" ,
39
+ " pystache" ,
40
+ " requests" ,
41
+ " seaborn" ,
42
+ " yaml"
43
+ ]
44
+ ignore_missing_imports = true
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
17
17
set -e
18
+ set -x
18
19
19
20
DIRECTORY=$( cd ` dirname $0 ` && pwd)
20
- pip3 install -e $DIRECTORY /fireci >> /dev/null
21
+ python3 -m ensurepip --upgrade
22
+ python3 -m pip install --upgrade setuptools
23
+ python3 -m pip install --upgrade pip
24
+ python3 -m pip install --upgrade wheel
25
+ python3 -m pip install -e $DIRECTORY /fireci >> /dev/null
21
26
fireci $@
You can’t perform that action at this time.
0 commit comments