Merge pull request #249139 from fabaff/qcodes-bump
python311Packages.qcodes: 0.39.0 -> 0.39.1
This commit is contained in:
commit
71676c87be
1 changed files with 21 additions and 9 deletions
|
@ -53,14 +53,14 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "qcodes";
|
||||
version = "0.39.0";
|
||||
version = "0.39.1";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-zKn9LN7FBxKUfYSxUV1O6fB2s/B5bQpGDZTrK4DcxmU=";
|
||||
sha256 = "sha256-2gJ/WeynabiGB1Z66+qaUbf6/1wogf/XjIE2mCAXUZY=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
@ -78,8 +78,9 @@ buildPythonPackage rec {
|
|||
broadbean
|
||||
h5netcdf
|
||||
h5py
|
||||
ipywidgets
|
||||
ipykernel
|
||||
ipython
|
||||
ipywidgets
|
||||
jsonschema
|
||||
matplotlib
|
||||
numpy
|
||||
|
@ -87,18 +88,17 @@ buildPythonPackage rec {
|
|||
opencensus-ext-azure
|
||||
packaging
|
||||
pandas
|
||||
pillow
|
||||
pyvisa
|
||||
rsa
|
||||
ruamel-yaml
|
||||
tabulate
|
||||
typing-extensions
|
||||
tqdm
|
||||
typing-extensions
|
||||
uncertainties
|
||||
websockets
|
||||
wrapt
|
||||
xarray
|
||||
ipython
|
||||
pillow
|
||||
rsa
|
||||
] ++ lib.optionals (pythonOlder "3.10") [
|
||||
importlib-metadata
|
||||
];
|
||||
|
@ -134,10 +134,22 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# depends on qcodes-loop, causing a cyclic dependency
|
||||
# Test depends on qcodes-loop, causing a cyclic dependency
|
||||
"qcodes/tests/dataset/measurement/test_load_legacy_data.py"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Tests are time-sensitive and power-consuming
|
||||
# Those tests fails repeatably
|
||||
"test_access_channels_by_slice"
|
||||
"test_do1d_additional_setpoints_shape"
|
||||
"test_dond_1d_additional_setpoints_shape"
|
||||
"test_field_limits"
|
||||
"test_get_array_in_scalar_param_data"
|
||||
"test_get_parameter_data"
|
||||
"test_ramp_safely"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"qcodes"
|
||||
];
|
||||
|
@ -147,8 +159,8 @@ buildPythonPackage rec {
|
|||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://qcodes.github.io/Qcodes/";
|
||||
description = "Python-based data acquisition framework";
|
||||
homepage = "https://qcodes.github.io/Qcodes/";
|
||||
changelog = "https://github.com/QCoDeS/Qcodes/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ evilmav ];
|
||||
|
|
Loading…
Reference in a new issue