Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

fix: downgrade docarray #719

Merged
merged 6 commits into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,13 @@ jobs:
matrix:
version: [3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v2
- name: Setp up python version
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.version }}
- name: Install client
run: pip install 'finetuner[full]' --no-cache-dir
- name: Check installation
run: |
pip freeze | grep finetuner
python -c "import finetuner"
python -c "import torch"
- name: Test install
run: make install

# just for blocking the merge until all parallel core-test are successful
success-all-test:
Expand All @@ -67,4 +63,4 @@ jobs:
run: exit 1
- name: Success
if: ${{ success() }}
run: echo "All Done"
run: echo "All Done"
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Docs


## [0.7.6] - 2023-04-18

### Added

### Removed

### Changed

- Install finetuner from source code instead of using a pip package [#719](https://github.com/jina-ai/finetuner/pull/719).

### Fixed

- Downgrade docarray version [#719](https://github.com/jina-ai/finetuner/pull/719).

### Docs


## [0.7.5] - 2023-04-14

### Added
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = 0.7.5
version = 0.7.6

[flake8]
# E501 is too long lines - ignore as black takes care of that
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
zip_safe=False,
setup_requires=['setuptools>=18.0', 'wheel'],
install_requires=[
'docarray[common]>=0.21.0',
'docarray[common]<0.30.0',
'trimesh==3.16.4',
'finetuner-stubs==0.13.3',
'finetuner-stubs==0.13.4',
'jina-hubble-sdk==0.33.1',
],
extras_require={
'full': [
'finetuner-commons==0.13.3',
'finetuner-commons==0.13.4',
],
'test': [
'black==22.3.0',
Expand Down