Skip to content

Commit

Permalink
Merge pull request #1693 from roboflow/fix/poetry/py313
Browse files Browse the repository at this point in the history
fix: 🐞 updating poetry lock file version and fixing numpy,pandas,maplotlib and python versions compatibility
  • Loading branch information
LinasKo authored Dec 2, 2024
2 parents 1e2bdee + eac2691 commit d075eb1
Show file tree
Hide file tree
Showing 5 changed files with 360 additions and 137 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/poetry-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,10 @@ jobs:
run: poetry check

- name: πŸš€ Do Install the package Test
run: poetry install
run: poetry install --with dev --extras metrics

- name: πŸ§ͺ Run the Import test
run: poetry run python -c "import supervision; from supervision import assets; from supervision import metrics; print(supervision.__version__)"

- name: πŸ§ͺ Run the pytests
run: poetry run python -m pytest ./test
2 changes: 0 additions & 2 deletions .github/workflows/test-min.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:
uses: actions/checkout@v4
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
#Β id based on python version
id: python-setup
with:
python-version: ${{ matrix.python-version }}
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
pip install .
pip install pytest
- name: πŸ§ͺ Test
- name: πŸ§ͺ PyTest
run: "python -m pytest ./test"
Loading

0 comments on commit d075eb1

Please sign in to comment.