Skip to content

Commit cc15508

Browse files
author
Joan Martinez
committed
ci: test ci
1 parent 9dcd0c1 commit cc15508

File tree

5 files changed

+19
-20
lines changed

5 files changed

+19
-20
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
python -m pip install --upgrade pip
124124
pip install setuptools wheel
125125
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
126-
pip install cibuildwheel
126+
pip install cibuildwheel<=2.17.0
127127
128128
- name: Build wheels with setuptools-golang-build-manylinux-wheel
129129
run: |
@@ -198,7 +198,7 @@ jobs:
198198
python -m pip install --upgrade pip
199199
pip install setuptools wheel
200200
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
201-
pip install cibuildwheel
201+
pip install cibuildwheel<=2.17.0
202202
203203
- name: Build wheels with setuptools-golang-build-manylinux-wheel
204204
run: |
@@ -367,7 +367,7 @@ jobs:
367367
python -m pip install --upgrade pip
368368
pip install setuptools wheel
369369
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
370-
pip install cibuildwheel
370+
pip install cibuildwheel<=2.17.0
371371
372372
- name: Update version
373373
run: |
@@ -476,7 +476,7 @@ jobs:
476476
python -m pip install --upgrade pip
477477
pip install setuptools wheel
478478
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
479-
pip install cibuildwheel
479+
pip install cibuildwheel<=2.17.0
480480
481481
- name: Build wheels with setuptools-golang-build-manylinux-wheel
482482
run: |

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ jobs:
457457
python -m pip install --upgrade pip
458458
pip install setuptools wheel
459459
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
460-
pip install cibuildwheel
460+
pip install cibuildwheel<=2.17.0
461461
462462
- name: Build wheels with setuptools-golang-build-manylinux-wheel
463463
run: |
@@ -533,7 +533,7 @@ jobs:
533533
python -m pip install --upgrade pip
534534
pip install setuptools wheel
535535
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
536-
pip install cibuildwheel
536+
pip install cibuildwheel<=2.17.0
537537
538538
- name: Build wheels with setuptools-golang-build-manylinux-wheel
539539
run: |
@@ -671,7 +671,7 @@ jobs:
671671
python -m pip install --upgrade pip
672672
pip install setuptools wheel
673673
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
674-
pip install cibuildwheel
674+
pip install cibuildwheel<=2.17.0
675675
676676
- name: Build wheels with setuptools-golang-build-manylinux-wheel
677677
if: ${{ matrix.os == 'ubuntu-latest' }}
@@ -728,7 +728,7 @@ jobs:
728728
python -m pip install --upgrade pip
729729
pip install setuptools wheel
730730
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
731-
pip install cibuildwheel
731+
pip install cibuildwheel<=2.17.0
732732
733733
- name: Build wheels with setuptools-golang-build-manylinux-wheel
734734
run: |

.github/workflows/force-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
python -m pip install --upgrade pip
124124
pip install setuptools wheel
125125
pip install git+https://github.com/jina-ai/setuptools-golang.git@feat-align-with-alaeddine-code
126-
pip install cibuildwheel
126+
pip install cibuildwheel<=2.17.0
127127
128128
- name: Build wheels with setuptools-golang-build-manylinux-wheel
129129
if: ${{ matrix.os == 'ubuntu-latest' }}

jina/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ def _ignore_google_warnings():
7373
except Exception as e:
7474
_warnings.warn(f'failed to set multiprocessing start_method to `fork`: {e!r}')
7575

76-
# do not change this line manually
77-
# this is managed by git tag and updated on every release
76+
# do not change this line manually this is managed by git tag and updated on every release
7877
# NOTE: this represents the NEXT release version
7978

8079
__version__ = '3.25.2'

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,10 @@ def get_extra_requires(path, add_all=True):
144144
standard_deps = all_deps['standard'].union(core_deps).union(perf_deps)
145145

146146
# uvloop is not supported on windows
147-
perf_deps = {i+";platform_system!='Windows'" if i.startswith('uvloop') else i for i in perf_deps}
148-
standard_deps = {i+";platform_system!='Windows'" if i.startswith('uvloop') else i for i in standard_deps}
147+
perf_deps = {i + ";platform_system!='Windows'" if i.startswith('uvloop') else i for i in perf_deps}
148+
standard_deps = {i + ";platform_system!='Windows'" if i.startswith('uvloop') else i for i in standard_deps}
149149
for k in ['all', 'devel', 'cicd']:
150-
all_deps[k] = {i+";platform_system!='Windows'" if i.startswith('uvloop') else i for i in all_deps[k]}
150+
all_deps[k] = {i + ";platform_system!='Windows'" if i.startswith('uvloop') else i for i in all_deps[k]}
151151

152152
# by default, final deps is the standard deps, unless specified by env otherwise
153153
final_deps = standard_deps
@@ -193,11 +193,11 @@ def get_extra_requires(path, add_all=True):
193193
version=__version__,
194194
include_package_data=True,
195195
description='Multimodal AI services & pipelines with cloud-native stack: gRPC, Kubernetes, Docker, OpenTelemetry, Prometheus, Jaeger, etc.',
196-
author= AUTHOR_NAME,
197-
author_email= AUTHOR_EMAIL,
198-
license= LICENSE,
199-
url= GITHUB_REPO,
200-
download_url= DOWNLOAD_URL,
196+
author=AUTHOR_NAME,
197+
author_email=AUTHOR_EMAIL,
198+
license=LICENSE,
199+
url=GITHUB_REPO,
200+
download_url=DOWNLOAD_URL,
201201
long_description=_long_description,
202202
long_description_content_type='text/markdown',
203203
zip_safe=False,
@@ -244,6 +244,6 @@ def get_extra_requires(path, add_all=True):
244244
'Tracker': TRACKER,
245245
},
246246
keywords='jina cloud-native cross-modal multimodal neural-search query search index elastic neural-network encoding '
247-
'embedding serving docker container image video audio deep-learning mlops',
247+
'embedding serving docker container image video audio deep-learning mlops',
248248
**extra_golang_kw,
249249
)

0 commit comments

Comments
 (0)