Skip to content

Commit

Permalink
MAINT: dservercore instead of dtool_lookup_server
Browse files Browse the repository at this point in the history
  • Loading branch information
jotelha committed Jun 13, 2024
1 parent d8ab799 commit d5993ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
pip install --upgrade build
pip install --upgrade setuptools wheel setuptools-scm[toml] importlib-metadata
pip install git+https://github.com/jic-dtool/dtool-lookup-server.git@master
pip install git+https://github.com/livMatS/dservercore.git@master
pip list
- name: Package distribution
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
mongodb-version: ['4.2', '4.4', '5.0', '6.0']
dtool-lookup-server-version: [ master ]
dservercore-version: [ master ]
dserver-search-plugin-mongo-version: [ main ]

steps:
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Install server refactor and search plugin
run: |
# This should move into the strategy matrix once released
pip install git+https://github.com/jic-dtool/dtool-lookup-server.git@${{ matrix.dtool-lookup-server-version }}
pip install git+https://github.com/livMatS/dservercore.git@${{ matrix.dservercore-version }}
pip install git+https://github.com/livMatS/dserver-search-plugin-mongo.git@${{ matrix.dserver-search-plugin-mongo-version }}
- name: Install own requirements
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ functional search plugin, i.e.

.. code-block:: bash
pip install dtool-lookup-server
pip install dservercore
pip install dserver-search-plugin-mongo
Installation with the ``[test]`` extension
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ dynamic = ["version"]
dependencies = [
"pymongo",
"dtoolcore>=3.18.0",
"dtool-lookup-server"
"dservercore"
]

[project.optional-dependencies]
test = [
"dtool-lookup-server",
"dservercore",
"dserver-search-plugin-mongo",
"pytest",
"pytest-cov",
Expand All @@ -39,5 +39,5 @@ write_to = "dserver_retrieve_plugin_mongo/version.py"
[tool.setuptools]
packages = ["dserver_retrieve_plugin_mongo"]

[project.entry-points."dtool_lookup_server.retrieve"]
[project.entry-points."dservercore.retrieve"]
"MongoRetrieve" = "dserver_retrieve_plugin_mongo.utils_retrieve:MongoRetrieve"

0 comments on commit d5993ca

Please sign in to comment.