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 2424 - run : |
2525 pytest ci/fireci
2626 - 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 11[build-system ]
2- requires = [" setuptools ~= 58 .0" ]
2+ requires = [" setuptools ~= 70 .0" ]
33build-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 1515# limitations under the License.
1616
1717set -e
18+ set -x
1819
1920DIRECTORY=$( 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
2126fireci $@
You can’t perform that action at this time.
0 commit comments