Skip to content

Commit

Permalink
[Fix] Fix pypi depoyment (#1720)
Browse files Browse the repository at this point in the history
  • Loading branch information
ly015 committed Oct 14, 2022
1 parent e962ccf commit 0d9a00c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .circleci/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
python -m pip install mmdet
python -m pip install mmtrack
python -m pip install -r requirements.txt
python -m pip install -r requirements/poseval.txt
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
- run:
name: Build and install
Expand Down Expand Up @@ -116,6 +117,7 @@ jobs:
python -m pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/<< parameters.cuda >>/torch<< parameters.torch >>/index.html
python -m pip install mmdet
python -m pip install -r requirements.txt
python -m pip install -r requirements/poseval.txt
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
- run:
name: Build and install
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
- name: Install other dependencies
run: |
pip install -r requirements.txt
python -m pip install -r requirements/poseval.txt
pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
- name: Build and install
run: rm -rf .eggs && pip install -e .
Expand Down Expand Up @@ -124,6 +125,7 @@ jobs:
python -V
python -m pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu101/${{matrix.torch_version}}/index.html
python -m pip install -r requirements.txt
python -m pip install -r requirements/poseval.txt
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
python -c 'import mmcv; print(mmcv.__version__)'
- name: Build and install
Expand Down Expand Up @@ -188,6 +190,7 @@ jobs:
python -V
python -m pip install mmcv-full -f https://download.openmmlab.com/mmcv/dist/cu102/${{matrix.torch_version}}/index.html
python -m pip install -r requirements.txt
python -m pip install -r requirements/poseval.txt
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
python -c 'import mmcv; print(mmcv.__version__)'
- name: Build and install
Expand Down Expand Up @@ -233,7 +236,7 @@ jobs:
run: |
python -V
python -m pip install xtcocotools
python -m pip install -r requirements/tests.txt -r requirements/optional.txt
python -m pip install -r requirements/tests.txt -r requirements/optional.txt -r requirements/poseval.txt
python -m pip install albumentations>=0.3.2 --no-binary imgaug,albumentations
python -c 'import mmcv; print(mmcv.__version__)'
- name: Show pip list
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
-r requirements/runtime.txt
-r requirements/tests.txt
-r requirements/optional.txt
-r requirements/poseval.txt
1 change: 0 additions & 1 deletion requirements/optional.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
onnx
onnxruntime
poseval@git+https://github.com/svenkreiss/poseval.git
pyrender
requests
smplx>=0.1.28
Expand Down
1 change: 1 addition & 0 deletions requirements/poseval.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
poseval@git+https://github.com/svenkreiss/poseval.git

0 comments on commit 0d9a00c

Please sign in to comment.