Skip to content

Commit

Permalink
Update dependencies for mongodb
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Nov 5, 2024
1 parent a30cbd3 commit de259b4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
pip install .[test,mongodb]
- name: Unit Tests
run: |
pytest tests --doctest-modules --junitxml=tests/unit-test-results.xml
Expand Down
1 change: 1 addition & 0 deletions requirements/mongodb.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pymongo~=4.0
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def get_requirements(requirements_filename: str):
include_package_data=True,
install_requires=get_requirements("requirements.txt"),
extras_require={"test": get_requirements("test_requirements.txt"),
"mq": get_requirements("mq.txt")},
"mq": get_requirements("mq.txt"),
"mongodb": get_requirements("mongodb.txt")},
zip_safe=True,
classifiers=[
'Intended Audience :: Developers',
Expand Down

0 comments on commit de259b4

Please sign in to comment.