Compare commits

..

No commits in common. "b47dec03173cc58ed0ecd187877b9e3b32abcbbd" and "950a5831ec35869a195d351391f7cfb73157b20d" have entirely different histories.

3 changed files with 4 additions and 5 deletions

View File

@ -41,15 +41,14 @@ solver will need the ability to solve complex symmetric (non-Hermitian)
linear systems, ideally with double precision. linear systems, ideally with double precision.
- [Source repository](https://mpxd.net/code/jan/meanas) - [Source repository](https://mpxd.net/code/jan/meanas)
- [PyPI](https://pypi.org/project/meanas) - PyPI *TBD*
- [Github mirror](https://github.com/anewusername/meanas)
## Installation ## Installation
**Requirements:** **Requirements:**
* python >=3.11 * python >=3.8
* numpy * numpy
* scipy * scipy

View File

@ -6,7 +6,7 @@ See the readme or `import meanas; help(meanas)` for more info.
import pathlib import pathlib
__version__ = '0.9' __version__ = '0.8'
__author__ = 'Jan Petykiewicz' __author__ = 'Jan Petykiewicz'

View File

@ -33,7 +33,7 @@ classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3", "License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Scientific/Engineering :: Physics", "Topic :: Scientific/Engineering :: Physics",
] ]
requires-python = ">=3.11" requires-python = ">=3.8"
include = [ include = [
"LICENSE.md" "LICENSE.md"
] ]