qctrl-client 16.0.1__tar.gz → 16.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/PKG-INFO +1 -1
  2. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/pyproject.toml +4 -4
  3. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/__init__.py +1 -1
  4. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/__init__.py +1 -1
  5. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/api_key.py +1 -1
  6. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/base.py +1 -1
  7. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/cli.py +1 -1
  8. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/constants.py +1 -1
  9. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/helpers.py +1 -1
  10. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/keycloak.py +1 -1
  11. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/mixins.py +1 -1
  12. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/oidc.py +1 -1
  13. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/password.py +1 -1
  14. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/redirect_listener.py +1 -1
  15. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/service_account.py +1 -1
  16. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/auth/token_exchange.py +1 -1
  17. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/client.py +1 -1
  18. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/defaults.py +1 -1
  19. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/exceptions.py +1 -1
  20. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/globals.py +1 -1
  21. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/pytest_plugin.py +1 -1
  22. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/LICENSE +0 -0
  23. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/README.md +0 -0
  24. {qctrl_client-16.0.1 → qctrl_client-16.0.2}/qctrlclient/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: qctrl-client
3
- Version: 16.0.1
3
+ Version: 16.0.2
4
4
  Summary: Q-CTRL Client
5
5
  License: https://q-ctrl.com/terms
6
6
  Keywords: black opal,boulder opal,fire opal,ironstone opal,nisq,open controls,q control,q ctrl,q-control,q-ctrl,qcontrol,qctrl,quantum,quantum algorithms,quantum circuits,quantum coding,quantum coding software,quantum computing,quantum control,quantum control software,quantum control theory,quantum engineering,quantum error correction,quantum firmware,quantum fundamentals,quantum navigation,quantum sensing,qubit,qudit
@@ -2,7 +2,7 @@
2
2
  name = "qctrl-client"
3
3
  description = "Q-CTRL Client"
4
4
  requires-python = ">=3.10, <3.14"
5
- version = "16.0.1"
5
+ version = "16.0.2"
6
6
  license = "https://q-ctrl.com/terms"
7
7
  readme = "README.md"
8
8
  authors = [
@@ -94,14 +94,14 @@ httpx = "^0.28.1"
94
94
  authlib = "^1.6.5"
95
95
 
96
96
  [tool.poetry.group.dev.dependencies]
97
- pytest = "^8.4.1"
97
+ pytest = "^9.0.2"
98
98
  pytest-cov = "^7.0.0"
99
99
  pytest-mock = "^3.12.0"
100
100
  pre-commit = "^4.2.0"
101
- ruff = "^0.13.3"
101
+ ruff = "^0.14.10"
102
102
  mypy = "^1.15.0"
103
103
  types-requests = "^2.32.0.20250328"
104
- deptry = "^0.23.0"
104
+ deptry = "^0.24.0"
105
105
  qctrl-mkdocs-theme = "^1.0.1"
106
106
  mkdocs = "^1.6.1"
107
107
  pytest-asyncio = "^1.3.0"
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
@@ -1,4 +1,4 @@
1
- # Copyright 2025 Q-CTRL. All rights reserved.
1
+ # Copyright 2026 Q-CTRL. All rights reserved.
2
2
  #
3
3
  # Licensed under the Q-CTRL Terms of service (the "License"). Unauthorized
4
4
  # copying or use of this file, via any medium, is strictly prohibited.
File without changes
File without changes