Skip to content

Commit c73a189

Browse files
authored
Resolve conflicts when using Python 3.13 (#3792)
* Explicitly set _comment_prefixes for TIMConfig * Bump qulacs to 0.6.11 since installing 0.6.10 errors out on Python 3.13 * Update Poetry lock file * Reformat config_file.py
1 parent 8df1dd4 commit c73a189

File tree

3 files changed

+26
-25
lines changed

3 files changed

+26
-25
lines changed

cli/config/config_file.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class TIMConfig(ConfigParser):
2727
def __init__(self, save_path: str, *args: Any, **kwargs: Any) -> None:
2828
super().__init__(*args, **kwargs)
2929
self._comment_lines: Dict[Tuple[str, str], str] = {}
30+
self._comment_prefixes: Tuple = ("#", ";")
3031
self._save_path = save_path
3132

3233
@property

poetry.lock

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ six = "^1.16.0"
7373
python-gnupg = "^0.5.0"
7474
pysaml2 = "^7.2.1"
7575
cachelib = "<0.10.0"
76-
qulacs = "^0.6.1"
76+
qulacs = "^0.6.11"
7777
flask-babel = "^4.0.0"
7878
openpyxl = "^3.1.5"
7979

@@ -95,7 +95,7 @@ authlib = "^1.2.1"
9595
langcodes = "^3.3.0"
9696
black = {extras = ["d"], version = "^23.3.0"}
9797
types-pysaml2 = "^1.0.0"
98-
qulacs = "^0.6.1"
98+
qulacs = "^0.6.11"
9999
SQLAlchemy = "^2.0.19"
100100
flask-babel = "^4.0.0"
101101
types-openpyxl = "^3.1.5.20241225"

0 commit comments

Comments
 (0)