Skip to content

Commit

Permalink
Merge pull request #19 from not-a-feature/dev
Browse files Browse the repository at this point in the history
update python version
  • Loading branch information
not-a-feature authored Mar 12, 2024
2 parents 47d232e + 1cbcca4 commit b0e7a4f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 66 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.7', '3.10', '3.11']
python-version: ['3.8', '3.10', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
48 changes: 0 additions & 48 deletions DEPENDENCIES.md

This file was deleted.

8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ matrix = bl.BLOSUM(62, default=0)
```

## License
```
Copyright (C) 2023 by Jules Kreuer - @not_a_feature

This piece of software is published unter the GNU General Public License v3.0
TLDR:

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

## Dependencies
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.
Go to [DEPENDENCIES.md](https://github.com/not-a-feature/blosum/blob/main/DEPENDENCIES.md) to see all dependencies and licenses.
Go to [LICENSE.md](https://github.com/not-a-feature/blosum/blob/main/LICENSE) to see the full version.
9 changes: 2 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = blosum
version = 2.0.2
version = 2.0.3
description = A simple BLOSUM toolbox without dependencies.
long_description = file: README.md
long_description_content_type=text/markdown
Expand All @@ -12,16 +12,11 @@ license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11

[options]
packages =
blosum
python_requires = >=3.7
python_requires = >=3.8
package_dir =
=src
zip_safe = no
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tox]
minversion = 3.7.0
envlist = py37, py310, py311, mypy
minversion = 3.8.0
envlist = py38, py310, py312, mypy
isolated_build = true

[gh-actions]
python =
3.7: py37
3.8: py38
3.10: py310, mypy
3.11: py311
3.12: py312

[testenv]
setenv =
Expand Down

0 comments on commit b0e7a4f

Please sign in to comment.