You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,14 @@ classifiers = [
13
13
"Development Status :: 3 - Alpha",
14
14
"Intended Audience :: Science/Research",
15
15
"Programming Language :: Python :: 3 :: Only",
16
-
"Programming Language :: Python :: 3.11",
17
16
"Programming Language :: Python :: 3.12",
18
17
"Programming Language :: Python :: 3.13",
19
18
"Programming Language :: Python :: 3.14",
20
19
"Topic :: Scientific/Engineering",
21
20
]
22
21
license = "MIT"
23
22
readme = "README.rst"
24
-
requires-python = ">=3.11"
23
+
requires-python = ">=3.12"
25
24
dependencies = [
26
25
"broadbean>=0.11.0",
27
26
"h5netcdf>=0.14.1",
@@ -31,9 +30,9 @@ dependencies = [
31
30
"jsonschema>=4.9.0",
32
31
"matplotlib>=3.6.0",
33
32
"networkx>=3.1",
34
-
"numpy>=1.22.4",
33
+
"numpy>=1.26.0",
35
34
"packaging>=20.0",
36
-
"pandas>=1.5.0",
35
+
"pandas>=2.1.0",
37
36
"pyarrow>=11.0.0", # will become a requirement of pandas. Installing explicitly silences a warning
38
37
"pyvisa>=1.11.0, <1.17.0",
39
38
"ruamel.yaml>=0.16.0,!=0.16.6",
@@ -218,7 +217,6 @@ markers = "serial"
218
217
# and error on all other warnings
219
218
filterwarnings = [
220
219
'error',
221
-
'ignore:open_binary is deprecated:DeprecationWarning', # pyvisa-sim deprecated in 3.11 un-deprecated in 3.12. Drop filter once we drop support for 3.11
222
220
'ignore:unclosed database in:ResourceWarning', # internal should be fixed
223
221
'ignore:unclosed\ <socket\.socket:ResourceWarning', # not clear from where this is coming
224
222
'ignore:Model_336 is deprecated:qcodes.utils.deprecate.QCoDeSDeprecationWarning', # remove once deprecated Lakeshore Model_336 and its tests has been removed
0 commit comments