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

Commit

Permalink
Merge branch 'HumanSignal:master' into yolo-predictions
Browse files Browse the repository at this point in the history
  • Loading branch information
carbaro authored Nov 9, 2023
2 parents 311e50a + 5d4a6d9 commit 04fe3c2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: '3.8'

- name: Configure pip cache
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
- uses: hmarr/[email protected]

- name: "Validate PR's title"
uses: thehanimo/[email protected].0
uses: thehanimo/[email protected].1
with:
GITHUB_TOKEN: ${{ github.token }}
pass_on_octokit_error: false
configuration_path: ".github/pr-title-checker-config.json"

- name: "Set PR's label based on title"
uses: release-drafter/release-drafter@v5.24.0
uses: release-drafter/release-drafter@v5.25.0
with:
disable-releaser: true
config-name: autolabeler.yml
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: '3.8'

- uses: actions/cache@v3
name: Configure pip cache
id: pip-cache
Expand All @@ -45,21 +45,21 @@ jobs:
key: ${{ env.CACHE_NAME_PREFIX }}-${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-test.txt') }}
restore-keys: |
${{ env.CACHE_NAME_PREFIX }}-${{ runner.os }}-pip-
- name: Install dependencies
run: |
sudo apt-get clean
sudo apt-get update
sudo apt-get install virtualenv libsasl2-dev python3-dev libldap2-dev libssl-dev
pip install -U pip==20.2
pip install -r requirements.txt -r requirements-test.txt
pip install -r requirements.txt -r requirements-test.txt
- name: Run functional tests
run: |
pytest --junitxml report.xml --cov=. -m "not integration_tests"
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion label_studio_converter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
except ModuleNotFoundError as e:
print(e)

__version__ = '0.0.56.dev'
__version__ = '0.0.58.dev'
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
pandas>=0.24.0
requests>=2.22.0,<3
Pillow==9.3.0
Pillow>=10.0.1
nltk==3.6.7
label-studio-tools>=0.0.3
ujson
ijson~=3.2.0.post0

0 comments on commit 04fe3c2

Please sign in to comment.