Skip to content

Commit

Permalink
3.12 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cgevans committed Nov 5, 2023
1 parent 7db88d4 commit 7b5738b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"] # , "3.12.0-beta.4"]
python-version: ["3.9", "3.10", "3.11", "3.12"] # , "3.12.0-beta.4"]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ SPDX-License-Identifier: EUPL-1.2
- Available data is shown in experiment information.
- Change license to EUPL-1.2.
- Fixes for new matplotlib versions.
- Support for Python 3.12.

# Version 0.10.1

Expand Down
21 changes: 7 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,34 +62,27 @@ dependencies = [
]

[project.optional-dependencies]
# Add here additional requirements for extra features, to install with:
# `pip install qslib[PDF]` like:
# PDF = ReportLab; RXP
monitor = ["matrix-nio", "influxdb_client", "toml", "lxml"]
monitor = [
"aiohttp~=3.9.0b0; python_version >= '3.12'",
"matrix-nio",
"influxdb_client",
"lxml"]
docs = [
"myst_parser",
"influxdb_client",
"toml",
"lxml",
"sphinx-click",
"sphinx-autodoc-typehints",
"sphinx >= 2.4",
"matrix-nio",
"influxdb_client",
"toml",
"lxml",
"qslib[monitor]"
]
# Add here test requirements (semicolon/line-separated)
testing = [
"setuptools",
"pytest",
"pytest-cov",
"pytest-asyncio",
"hypothesis",
"matrix-nio",
"influxdb_client",
"toml",
"lxml",
"qslib[monitor]",
]

[project.urls]
Expand Down

0 comments on commit 7b5738b

Please sign in to comment.