Skip to content

Commit

Permalink
Merge pull request #64 from ondraz/main
Browse files Browse the repository at this point in the history
Allowing pandas in version >=2.0.0
  • Loading branch information
koaning authored Nov 15, 2023
2 parents d1bc0e4 + 3027b5b commit 9d4de41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python -m bulk text tests/data/text.csv --port 5006 & sleep 1
- name: Start vision server in background
run: |
python -m bulk text tests/data/vision.csv --port 7007 & sleep 1
python -m bulk image tests/data/vision.csv --port 7007 & sleep 1
- name: Curl the text server
run: |
curl http://localhost:5006
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name="bulk",
version="0.3.0",
packages=find_packages(),
install_requires=["radicli>=0.0.8,<0.1.0", "bokeh>=2.4.3,<3.0.0", "pandas>=1.0.0,<2.0.0", "wasabi>=0.9.1"],
install_requires=["radicli>=0.0.8,<0.1.0", "bokeh>=2.4.3,<3.0.0", "pandas>=1.0.0", "wasabi>=0.9.1"],
extras_require={
"dev": ["pytest-playwright==0.3.0"],
},
Expand Down

0 comments on commit 9d4de41

Please sign in to comment.