Skip to content

Commit

Permalink
Drop testing with Python3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Apr 5, 2023
1 parent 3153b1a commit c89d595
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
max-parallel: 3
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10']

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ PHYSBO was developed based on [COMBO](https://github.com/tsudalab/combo) for aca
## Required Packages

- Python >= 3.6
- numpy
- scipy
- No longer tested with Python 3.6
- NumPy
- SciPy

## Install

Expand All @@ -42,6 +43,7 @@ pip3 install physbo
```

1. Install via pip

``` bash
# ./PHYSBO is the root directory of PHYSBO
# pip install options such as --user are avaiable
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
requires = tox>=4
envlist = py36, py37, py38, py39, py310, docs
envlist = py37, py38, py39, py310, docs
isolated_build = true

[gh-actions]
python =
'3.6': py36
'3.7': py37
'3.8': py38
'3.9': py39
Expand Down

0 comments on commit c89d595

Please sign in to comment.