Skip to content

Commit

Permalink
Merge pull request #88 from QCoDeS/add_request
Browse files Browse the repository at this point in the history
add missing requests dependency
  • Loading branch information
jenshnielsen authored May 7, 2024
2 parents f7ed16e + b563f9f commit ba8cde1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Tracker = "https://github.com/QCoDeS/Qcodes_loop/issues"

[project.optional-dependencies]
qtplot = ["pyqtgraph>=0.11.0"]
slack = ["slack-sdk>=3.4.2"]
slack = ["slack-sdk>=3.4.2", "requests", "urllib3"]
test = [
"coverage[toml]>=6.0.0",
"hypothesis>=5.49.0",
Expand All @@ -58,14 +58,18 @@ test = [
"pytest-mock>=3.0.0",
"pyqtgraph>=0.11.0", # pyqtgraph tests
"PyQt5>=5.15.0", # pyqtgraph tests
"slack-sdk>=3.4.2", # needed to typecheck slack extension
"slack-sdk>=3.4.2", # slack tests and typecheck
"requests", # slack tests and typecheck
"urllib3", # slack tests and typecheck
]
docs = [
"nbsphinx>=0.8.9",
"PyQt5>=5.15.0", # pyqtgraph examples
"pyqtgraph>=0.11.0", # pyqtgraph examples
"sphinx>=4.5.0",
"slack-sdk>=3.4.2", # slack example notebook
"slack-sdk>=3.4.2", # slack docs
"requests", # slack docs
"urllib3", # slack docs
]


Expand Down

0 comments on commit ba8cde1

Please sign in to comment.