From 316144d75b15e0000113505b0e7e146da8cf5bdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20G=C3=BCnther?= Date: Tue, 18 Apr 2023 17:21:35 +0200 Subject: [PATCH] fix: downgrade docarray (#719) --- .github/workflows/ci.yml | 12 ++++-------- CHANGELOG.md | 17 +++++++++++++++++ setup.cfg | 2 +- setup.py | 6 +++--- 4 files changed, 25 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50adf398e..1e8b11cef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -67,4 +63,4 @@ jobs: run: exit 1 - name: Success if: ${{ success() }} - run: echo "All Done" \ No newline at end of file + run: echo "All Done" diff --git a/CHANGELOG.md b/CHANGELOG.md index 49f74ae6f..48f57cde9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/setup.cfg b/setup.cfg index c0a80aa4a..0c3867e7a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/setup.py b/setup.py index 799151f1d..383b8ed8d 100644 --- a/setup.py +++ b/setup.py @@ -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',