diff --git a/ci/deps/requirements.yaml.tmpl b/ci/deps/requirements.yaml.tmpl index 5bc8fa5d..a61c956a 100644 --- a/ci/deps/requirements.yaml.tmpl +++ b/ci/deps/requirements.yaml.tmpl @@ -6,11 +6,11 @@ dependencies: - coverage - cython>=0.29 - ecos - - ipykernel - - ipython!=8.7.0 +# - ipykernel +# - ipython!=8.7.0 - joblib - - matplotlib>=3.6.2,<3.7 - - nbformat + - matplotlib>=3.8.0,<3.9 +# - nbformat - numexpr - numpy={CI_NUMPY_VERSION} - osqp!=0.6.0,!=0.6.1 @@ -28,5 +28,5 @@ dependencies: - black[jupyter]>=23.3.0,<23.4 - build - importlib-resources>=1.3 - - nbval>=0.10.0 - - tomli \ No newline at end of file +# - nbval>=0.10.0 + - tomli diff --git a/pyproject.toml b/pyproject.toml index 0efc0e83..1ab804b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,13 +16,15 @@ requires = [ "numpy==1.19.3; python_version=='3.9' and platform_machine != 'arm64'", "numpy==1.21.6; python_version=='3.10'", "numpy==1.23.2; python_version=='3.11'", - "numpy; python_version>'3.11'", + "numpy==1.26.1; python_version=='3.12'", + "numpy; python_version>'3.12'", # scikit-learn requirements "scikit-learn~=1.3.0; python_version<='3.9'", "scikit-learn~=1.3.0; python_version=='3.10'", "scikit-learn~=1.3.0; python_version=='3.11'", - "scikit-learn; python_version>'3.11'", + "scikit-learn~=1.3.0; python_version=='3.12'", + "scikit-learn; python_version>'3.12'", ] build-backend = "setuptools.build_meta"