From 2fa476e7e68a131c9130b1bce0754f0214526b63 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 14 May 2025 19:04:47 +0200 Subject: [PATCH 1/2] Update required python version in Quick start guide --- doc/quick_start_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/quick_start_guide.rst b/doc/quick_start_guide.rst index 7467b3a1833f..1ec27626fc06 100644 --- a/doc/quick_start_guide.rst +++ b/doc/quick_start_guide.rst @@ -24,7 +24,7 @@ Follow device driver installation instructions to complete the step. Python Interpreter ================== -You will need Python 3.8, 3.9, or 3.10 installed on your system. If you +You will need Python 3.9, 3.10, 3.11 or 3.12 installed on your system. If you do not have one yet the easiest way to do that is to install `Intel Distribution for Python*`_. It installs all essential Python numerical and machine learning packages optimized for the Intel hardware, including From 2dee517b2d278fc2374286b9c737867e6521fa9e Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Wed, 14 May 2025 19:07:01 +0200 Subject: [PATCH 2/2] Populate changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef0e9f832ee2..4c671cf75927 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ This release achieves 100% compliance with Python Array API specification (revis * Changed `"max dimensions"` to `None` in array API capabilities [#2432](https://github.com/IntelPython/dpnp/pull/2432) * Updated kernel header `i0.hpp` to expose `cyl_bessel_i0` function depending on build target [#2440](https://github.com/IntelPython/dpnp/pull/2440) * Added MKL functions `arg`, `copysign`, `i0`, and `inv` from VM namespace to be used by implementation of the appropriate element-wise functions [#2445](https://github.com/IntelPython/dpnp/pull/2445) +* Updates the list of required python versions documented in `Quick Start Guide` [#2449](https://github.com/IntelPython/dpnp/pull/2449) ### Fixed