Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: 🐞 updating poetry lock file version and fixing numpy,pandas,maplotlib and python versions compatibility #1693

Merged
merged 10 commits into from
Dec 2, 2024
Merged
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
Loading