Skip to content

Commit

Permalink
remove mongomock dependency in main package; add an extra mongomock
Browse files Browse the repository at this point in the history
  • Loading branch information
ikondov committed Jun 7, 2024
1 parent 8b27956 commit a8ad587
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
command: |
export PATH=$HOME/miniconda3/bin:$PATH
source activate test-environment
pip install .[workflow-checks,graph-plotting,flask-plotting]
pip install .[workflow-checks,graph-plotting,flask-plotting,mongomock]
server_store_file=$PWD/server_store_${RANDOM}-${RANDOM}-${RANDOM}.json
echo "{}" > $server_store_file
export MONGOMOCK_SERVERSTORE_FILE=$server_store_file
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ flask==2.2.5
flask-paginate==0.5.5
gunicorn==20.0.4
tqdm==4.41.0
mongomock-persistence==0.0.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"tqdm>=4.8.4",
"importlib-metadata>=4.8.2; python_version<'3.8'",
"typing-extensions; python_version<'3.8'",
"mongomock-persistence>=0.0.3",
],
extras_require={
"rtransfer": ["paramiko>=2.4.2"],
Expand All @@ -48,6 +47,7 @@
"flask-plotting": ["matplotlib>=2.0.1"],
"workflow-checks": ["igraph>=0.7.1"],
"graph-plotting": ["graphviz"],
"mongomock": ["mongomock-persistence>=0.0.3"],
},
classifiers=[
"Programming Language :: Python",
Expand Down

0 comments on commit a8ad587

Please sign in to comment.