Skip to content

Commit

Permalink
Drop Python 3.6, 3.7 support (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi authored Mar 19, 2024
1 parent d0f7ac9 commit 891dc4c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@ DSQSS implements the path-integral Monte Carlo method with the directed loop alg

- C++ Compiler
- CMake >=2.8.12
- Python >=3.6
- Python >=3.8
- numpy
- scipy
- toml
- typing_extensions

### Simple build

Expand Down
3 changes: 1 addition & 2 deletions doc/en/dsqss/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ Requirements
********************

- (Optional) MPI (essential for PMWA)
- python 3.6+
- python 3.8+

- numpy
- scipy
- toml
- typing_extensions
- pip (essential for ``make install``)

Download
Expand Down
3 changes: 1 addition & 2 deletions doc/jp/dsqss/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@
DSQSSの使用には以下のプログラム・ライブラリが必要です.

- (Optional) MPI (PMWAを使用する場合には必須)
- python 3.6+
- python 3.8+

- numpy
- scipy
- toml
- typing_extensions


ダウンロード
Expand Down
3 changes: 1 addition & 2 deletions tool/dsqss/prob_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from typing import Sequence
from typing_extensions import Protocol
from typing import Sequence, Protocol

import numpy as np

Expand Down
3 changes: 1 addition & 2 deletions tool/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.6"
python = "^3.8"
# Users should install dependencies by themselves
# numpy = "^1.17"
# toml = ">= 0.10.0"
# scipy = "^1"
# typing-extensions = "^3.7.4"

[tool.poetry.dev-dependencies]

Expand Down

0 comments on commit 891dc4c

Please sign in to comment.