Skip to content

Commit 7b23ccd

Browse files
committedJun 20, 2022
v1.1.0
1 parent 89b9fd9 commit 7b23ccd

16 files changed

+3260
-332
lines changed
 

‎.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: PHPUnit Tests
2424
uses: php-actions/phpunit@v3
2525
with:
26-
bootstrap: vendor/autoload.php
2726
configuration: tests/phpunit.xml
2827
version: 8.5
2928
php_version: ${{ matrix.php }}
29+

‎README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
The fundamental package for scientific matrix operation
32
=======================================================
43
Status:
@@ -7,8 +6,6 @@ Status:
76
[![Latest Stable Version](https://img.shields.io/packagist/v/rindow/rindow-math-matrix)](https://packagist.org/packages/rindow/rindow-math-matrix)
87
[![License](https://img.shields.io/packagist/l/rindow/rindow-math-matrix)](https://packagist.org/packages/rindow/rindow-math-matrix)
98

10-
11-
129
Rindow Math Matrix is the fundamental package for scientific matrix operation
1310

1411
- A powerful N-dimensional array object
@@ -20,6 +17,11 @@ Rindow Math Matrix is the fundamental package for scientific matrix operation
2017

2118
Please see the documents on [Rindow projects](https://rindow.github.io/) web pages.
2219

20+
Requirements
21+
============
22+
23+
- PHP7.2 or PHP7.3 or PHP7.4 or PHP8.0
24+
- PHP 8.1 is not supported in this release. Please use Release 1.2 or later, which supports PHP 8.1.
2325

2426

2527

‎composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"keywords": ["rindow","math","matrix","N-dimension","operation"],
66
"license": "BSD-3-Clause",
77
"require": {
8-
"php": ">=7.2",
9-
"interop-phpobjects/polite-math": ">=1.0.4"
8+
"php": "^7.2|^7.3|^7.4|^8.0",
9+
"interop-phpobjects/polite-math": "~1.0.4"
1010
},
1111
"suggest": {
12-
"ext-rindow_openblas": "0.2.4 strongly recommended for speed",
13-
"ext-rindow_opencl": "0.1.3 GPU/OpenCL support",
12+
"ext-rindow_openblas": "0.3.0 strongly recommended for speed",
13+
"ext-rindow_opencl": "0.1.4 GPU/OpenCL support",
1414
"ext-rindow_clblast": "0.1.2 BLAS on GPU/OpenCL support",
1515
"rindow/math-plot": "for OpenCL tunning"
1616
},

0 commit comments

Comments
 (0)