-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: fix overload and cli autocomplete
- Loading branch information
Showing
11 changed files
with
33 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,7 +106,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.8] | ||
python-version: ["3.10"] | ||
protobuf-version: ['==3.19.6', ''] | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -127,7 +127,7 @@ jobs: | |
- name: Build wheels with setuptools-golang-build-manylinux-wheel | ||
run: | | ||
setuptools-golang-build-manylinux-wheels --pythons cp38-cp38 | ||
setuptools-golang-build-manylinux-wheels --pythons cp310-cp310 | ||
- name: Prepare environment | ||
run: | | ||
docker build -f Dockerfiles/test-pip.Dockerfile -t jinaai/jina:test-pip . | ||
|
@@ -180,7 +180,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.8] | ||
python-version: ["3.10"] | ||
protobuf-version: ['==3.19.6', ''] | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -202,7 +202,7 @@ jobs: | |
- name: Build wheels with setuptools-golang-build-manylinux-wheel | ||
run: | | ||
setuptools-golang-build-manylinux-wheels --pythons cp38-cp38 | ||
setuptools-golang-build-manylinux-wheels --pythons cp310-cp310 | ||
- name: Prepare environment | ||
run: | | ||
docker build -f Dockerfiles/test-pip.Dockerfile -t jinaai/jina:test-pip . | ||
|
@@ -448,7 +448,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.10] | ||
python-version: ["3.10"] | ||
test-path: ${{fromJson(needs.prep-testbed.outputs.matrix)}} | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -470,7 +470,7 @@ jobs: | |
- name: Build wheels with setuptools-golang-build-manylinux-wheel | ||
run: | | ||
setuptools-golang-build-manylinux-wheels --pythons cp38-cp38 | ||
setuptools-golang-build-manylinux-wheels --pythons cp310-cp310 | ||
- name: Prepare environment | ||
run: | | ||
docker build --build-arg DOCARRAY_VERSION="0.21.0" -f Dockerfiles/test-pip.Dockerfile -t jinaai/jina:test-pip . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -439,7 +439,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.10] | ||
python-version: ["3.10"] | ||
protobuf-version: ['==3.19.6', ''] | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -461,7 +461,7 @@ jobs: | |
- name: Build wheels with setuptools-golang-build-manylinux-wheel | ||
run: | | ||
setuptools-golang-build-manylinux-wheels --pythons cp38-cp38 | ||
setuptools-golang-build-manylinux-wheels --pythons cp310-cp310 | ||
- name: Prepare environment | ||
run: | | ||
docker build -f Dockerfiles/test-pip.Dockerfile -t jinaai/jina:test-pip . | ||
|
@@ -515,7 +515,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.10] | ||
python-version: ["3.10"] | ||
protobuf-version: ['==3.19.6', ''] | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -537,7 +537,7 @@ jobs: | |
- name: Build wheels with setuptools-golang-build-manylinux-wheel | ||
run: | | ||
setuptools-golang-build-manylinux-wheels --pythons cp38-cp38 | ||
setuptools-golang-build-manylinux-wheels --pythons cp310-cp310 | ||
- name: Prepare environment | ||
run: | | ||
docker build -f Dockerfiles/test-pip.Dockerfile -t jinaai/jina:test-pip . | ||
|
@@ -700,7 +700,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.10] | ||
python-version: ["3.10"] | ||
test-path: ${{fromJson(needs.prep-testbed.outputs.matrix)}} | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -722,7 +722,7 @@ jobs: | |
- name: Build wheels with setuptools-golang-build-manylinux-wheel | ||
run: | | ||
setuptools-golang-build-manylinux-wheels --pythons cp38-cp38 | ||
setuptools-golang-build-manylinux-wheels --pythons cp310-cp310 | ||
- name: Prepare environment | ||
run: | | ||
docker build --build-arg DOCARRAY_VERSION="0.21.0" -f Dockerfiles/test-pip.Dockerfile -t jinaai/jina:test-pip . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG PY_VERSION=3.7 | ||
ARG PY_VERSION=3.10 | ||
ARG PIP_TAG | ||
|
||
FROM python:${PY_VERSION}-slim | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG PY_VERSION=3.8 | ||
ARG PY_VERSION=3.10 | ||
ARG PIP_TAG | ||
|
||
FROM python:${PY_VERSION}-slim | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG PY_VERSION=3.8 | ||
ARG PY_VERSION=3.10 | ||
|
||
FROM python:${PY_VERSION}-slim | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters