Skip to content

Commit b0e7a4f

Browse files
Merge pull request #19 from not-a-feature/dev
update python version
2 parents 47d232e + 1cbcca4 commit b0e7a4f

File tree

5 files changed

+9
-66
lines changed

5 files changed

+9
-66
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, windows-latest, macos-latest]
13-
python-version: ['3.7', '3.10', '3.11']
13+
python-version: ['3.8', '3.10', '3.12']
1414

1515
steps:
1616
- uses: actions/checkout@v3

DEPENDENCIES.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ matrix = bl.BLOSUM(62, default=0)
8989
```
9090

9191
## License
92-
```
9392
Copyright (C) 2023 by Jules Kreuer - @not_a_feature
93+
9494
This piece of software is published unter the GNU General Public License v3.0
9595
TLDR:
9696

@@ -101,9 +101,5 @@ TLDR:
101101
| ✓ Modification | Same license | |
102102
| ✓ Patent use | State changes | |
103103
| ✓ Private use | | |
104-
```
105-
Go to [LICENSE.md](https://github.com/not-a-feature/blosum/blob/main/LICENSE) to see the full version.
106104

107-
## Dependencies
108-
In addition to packages included in Python 3, this piece of software uses 3rd-party software packages for development purposes that are not required in the published version.
109-
Go to [DEPENDENCIES.md](https://github.com/not-a-feature/blosum/blob/main/DEPENDENCIES.md) to see all dependencies and licenses.
105+
Go to [LICENSE.md](https://github.com/not-a-feature/blosum/blob/main/LICENSE) to see the full version.

setup.cfg

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = blosum
3-
version = 2.0.2
3+
version = 2.0.3
44
description = A simple BLOSUM toolbox without dependencies.
55
long_description = file: README.md
66
long_description_content_type=text/markdown
@@ -12,16 +12,11 @@ license_file = LICENSE
1212
platforms = unix, linux, osx, cygwin, win32
1313
classifiers =
1414
Programming Language :: Python :: 3
15-
Programming Language :: Python :: 3.7
16-
Programming Language :: Python :: 3.8
17-
Programming Language :: Python :: 3.9
18-
Programming Language :: Python :: 3.10
19-
Programming Language :: Python :: 3.11
2015

2116
[options]
2217
packages =
2318
blosum
24-
python_requires = >=3.7
19+
python_requires = >=3.8
2520
package_dir =
2621
=src
2722
zip_safe = no

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tox]
2-
minversion = 3.7.0
3-
envlist = py37, py310, py311, mypy
2+
minversion = 3.8.0
3+
envlist = py38, py310, py312, mypy
44
isolated_build = true
55

66
[gh-actions]
77
python =
8-
3.7: py37
8+
3.8: py38
99
3.10: py310, mypy
10-
3.11: py311
10+
3.12: py312
1111

1212
[testenv]
1313
setenv =

0 commit comments

Comments
 (0)