Skip to content

Commit 9d36424

Browse files
committed
Updated code to remove references to the 'client' optional dependency, as it is no longer needed
1 parent ac158c0 commit 9d36424

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

Dockerfiles/murfey-instrument-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN apt-get update && \
3232
pip \
3333
build \
3434
importlib-metadata && \
35-
/venv/bin/python -m pip install /python-murfey[client]
35+
/venv/bin/python -m pip install /python-murfey
3636

3737

3838
# Transfer completed Murfey build to base image

pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ dependencies = [
4444
cicd = [
4545
"pytest-cov", # Used for generating PyTest coverage reports
4646
]
47-
client = [
48-
"websocket-client",
49-
]
5047
developer = [
5148
"bump-my-version", # Version control
5249
"ipykernel", # Enable interactive coding with VS Code and Jupyter Notebook

src/murfey/bootstrap/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def _download_to_file(url: str, outfile: str):
144144
murfey_hostname,
145145
"-i",
146146
f"{murfey_base}{url_path_for('bootstrap.pypi', 'get_pypi_index')}",
147-
"murfey[client]",
147+
"murfey",
148148
]
149149
)
150150
if result.returncode:

src/murfey/client/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def install_murfey(api_base: ParseResult, version: str) -> bool:
7878
path=f"{proxy_path}{url_path_for('bootstrap.pypi', 'get_pypi_index')}",
7979
query="",
8080
).geturl(),
81-
f"murfey[client]=={version}",
81+
f"murfey=={version}",
8282
]
8383
)
8484
return result.returncode == 0

0 commit comments

Comments
 (0)