Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump #26

Open
wants to merge 3 commits into
base: release_0.2.8
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: python
python:
- 3.6
- 3.7
- 3.8
- 3.9
install:
- pip install flake8
- pip install pytest
Expand Down
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
[![Build Status](https://travis-ci.com/savowe/pytalises.svg?token=nZF2LbDmAxqpxqs5m7HE&branch=master)](https://travis-ci.com/savowe/pytalises)
[![Documentation Status](https://readthedocs.org/projects/pytalises/badge/?version=latest)](https://pytalises.readthedocs.io/en/latest/?badge=latest)

![additional_examples_54_0](https://user-images.githubusercontent.com/38558793/119370320-713f2c00-bcb5-11eb-94e5-cc801abcd7d8.png)

# pyTALISES

**pyTALISES** (This Ain't a LInear Schrödinger Equation Solver) is an easy-to-use Python implementation of the Split-Step Fourier Method, for numeric calculation of a wave function's time-propagation under the Schrödinger equation.
Expand All @@ -31,9 +29,6 @@ and

Installing pytalises
====================
**We recommend installing pytalises via conda**

_Note from 2020/11/27_: the new Python 3.9 release is currently not supported by the numba libary. [They plan to implement a working version early 2021](https://github.com/numba/numba/issues/6345#issuecomment-738696458). So long just use Python 3.6-3.8 with pytalises.

#### Using conda

Expand Down
8 changes: 8 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

llvmlite~=0.37.0
numba~=0.54.1
numexpr~=2.8.1
numpy~=1.20.3
pyFFTW~=0.13.0
pytest~=6.2.5
scipy~=1.7.3
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
packages=["pytalises"],
install_requires=[
"numpy>=1.19",
"scipy>=1.5",
"numba>=0.50",
"pyfftw>=0.12",
"numexpr>=2.7",
"scipy>=1.7",
"numba>=0.54",
"pyfftw>=0.13",
"numexpr>=2.8",
],
classifiers=[
"Programming Language :: Python :: 3",
Expand All @@ -31,6 +31,6 @@
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
],
python_requires=">=3.6",
python_requires=">=3.8",
zip_safe=False,
)