File tree 2 files changed +43
-40
lines changed
2 files changed +43
-40
lines changed Original file line number Diff line number Diff line change 1
- name : python-package
2
-
3
- on :
4
- # push:
5
- # branches:
6
- # - main
7
- workflow_dispatch :
8
- release :
9
- types : [published]
10
-
11
- permissions : {} # Ensure the workflow has permission to push changes
12
- # contents: write # Allow write access for pushing to the repository
13
-
14
- jobs :
15
- deploy :
16
- runs-on : ubuntu-latest
17
-
18
- steps :
19
- - uses : actions/checkout@v4
20
-
21
- - name : Set up Python
22
- uses : actions/setup-python@v3
23
- with :
24
- python-version : ' 3.x'
25
-
26
- - name : Install dependencies
27
- run : |
28
- python -m pip install --upgrade pip
29
- pip install build
30
-
31
- - name : Build package
32
- run : python -m build
33
-
34
- - name : Publish package
35
- uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
36
- with :
37
- user : __token__
38
- password : ${{ secrets.PYPI_API_TOKEN }}
1
+ # name: python-package
2
+
3
+ # on:
4
+ # # push:
5
+ # # branches:
6
+ # # - main
7
+ # workflow_dispatch:
8
+ # release:
9
+ # types: [published]
10
+
11
+ # permissions: {} # Ensure the workflow has permission to push changes
12
+ # # contents: write # Allow write access for pushing to the repository
13
+
14
+ # jobs:
15
+ # deploy:
16
+ # runs-on: ubuntu-latest
17
+
18
+ # steps:
19
+ # - uses: actions/checkout@v4
20
+
21
+ # - name: Set up Python
22
+ # uses: actions/setup-python@v3
23
+ # with:
24
+ # python-version: '3.x'
25
+
26
+ # - name: Install dependencies
27
+ # run: |
28
+ # python -m pip install --upgrade pip
29
+ # pip install build
30
+
31
+ # - name: Build package
32
+ # run: python -m build
33
+
34
+ # - name: Publish package
35
+ # uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
36
+ # with:
37
+ # user: __token__
38
+ # password: ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change @@ -33,9 +33,12 @@ dependencies = [
33
33
" shapely" ,
34
34
" statsmodels" ,
35
35
" kaleido" ,
36
- " vertexai" ,
36
+ " google-api-core" ,
37
+ " google-genai>=1.2.0" ,
38
+ " google-cloud-aiplatform" ,
39
+ " google-auth" ,
40
+ " pillow" ,
37
41
" jsonschema" ,
38
- " jsonref" ,
39
42
]
40
43
41
44
[tool .setuptools .package-data ]
You can’t perform that action at this time.
0 commit comments