File tree Expand file tree Collapse file tree 4 files changed +17
-14
lines changed
Expand file tree Collapse file tree 4 files changed +17
-14
lines changed Original file line number Diff line number Diff line change 1212 - uses : actions/setup-python@v5
1313 with :
1414 python-version : ${{ matrix.python }}
15- - run : pip install -r requirements.txt
15+ - run : pip install --group dev
1616 - uses : ankane/setup-postgres@v1
1717 with :
1818 database : pgvector_python_test
Original file line number Diff line number Diff line change @@ -807,7 +807,7 @@ To get started with development:
807807``` sh
808808git clone https://github.com/pgvector/pgvector-python.git
809809cd pgvector-python
810- pip install -r requirements.txt
810+ pip install --group dev
811811createdb pgvector_python_test
812812pytest
813813```
Original file line number Diff line number Diff line change @@ -19,6 +19,21 @@ dependencies = [
1919[project .urls ]
2020Homepage = " https://github.com/pgvector/pgvector-python"
2121
22+ [dependency-groups ]
23+ dev = [
24+ " asyncpg" ,
25+ " Django" ,
26+ " peewee" ,
27+ " pg8000" ,
28+ " psycopg[binary,pool]" ,
29+ " psycopg2-binary" ,
30+ " pytest" ,
31+ " pytest-asyncio" ,
32+ " scipy" ,
33+ " SQLAlchemy[asyncio]>=2" ,
34+ " sqlmodel>=0.0.12"
35+ ]
36+
2237[tool .pytest .ini_options ]
2338asyncio_mode = " auto"
2439asyncio_default_fixture_loop_scope = " function"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments