File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,11 @@ https://semver.org/spec/v2.0.0.html
21
21
### Fixed
22
22
- Update ` numpy ` build dependency to ensure that builds also work on
23
23
MacOS (fixes issue [ #547 ] , thanks to @SongJaeIn for testing).
24
+ - Enforce up-to-date ` numpy ` dependency when possible:
25
+ - Set ` numpy >= 1.19 ` for Python == 3.6 due to ` numpy ` vulnerabilities
26
+ [ CVE-2021 -41495] and [ CVE-2021 -41496] .
27
+ - Set ` numpy >= 1.22 ` for Python >= 3.8 due to ` numpy ` vulnerability
28
+ [ CVE-2021 -34141] .
24
29
25
30
## [ 1.3.3] - 2022-05-11
26
31
@@ -1022,8 +1027,14 @@ https://nvd.nist.gov/vuln/detail/CVE-2022-22817
1022
1027
https://nvd.nist.gov/vuln/detail/CVE-2022-22816
1023
1028
[ CVE-2022 -22815] :
1024
1029
https://nvd.nist.gov/vuln/detail/CVE-2022-22815
1030
+ [ CVE-2021 -41496] :
1031
+ https://nvd.nist.gov/vuln/detail/CVE-2021-41496
1032
+ [ CVE-2021 -41495] :
1033
+ https://nvd.nist.gov/vuln/detail/CVE-2021-41495
1025
1034
[ CVE-2021 -34552] :
1026
1035
https://nvd.nist.gov/vuln/detail/CVE-2021-34552
1036
+ [ CVE-2021 -34141] :
1037
+ https://nvd.nist.gov/vuln/detail/CVE-2021-34141
1027
1038
[ CVE-2021 -33430] :
1028
1039
https://nvd.nist.gov/vuln/detail/CVE-2021-33430
1029
1040
[ CVE-2021 -28678] :
Original file line number Diff line number Diff line change @@ -6,8 +6,9 @@ numpy >= 1.11, < 1.12; python_version == "3.2"
6
6
numpy >= 1.11 , < 1.12 ; python_version == "3.3"
7
7
numpy >= 1.15 , < 1.17 ; python_version == "3.4"
8
8
numpy >= 1.16 , < 1.19 ; python_version == "3.5"
9
- numpy >= 1.16 , < 1.20 ; python_version == "3.6"
10
- numpy >= 1.21 , < 1.24 ; python_version >= "3.7"
9
+ numpy >= 1.19 , < 1.20 ; python_version == "3.6"
10
+ numpy >= 1.21 , < 1.22 ; python_version == "3.7"
11
+ numpy >= 1.22 , < 1.24 ; python_version >= "3.8"
11
12
12
13
cycler < 0.11 ; python_version == "3.2"
13
14
pyparsing >= 1.5 , < 2.4.1 ; python_version == "2.6"
You can’t perform that action at this time.
0 commit comments