Skip to content

Commit

Permalink
drop py3.7 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Jul 11, 2023
1 parent a8e4049 commit b16cc4b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

The `newick` package adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased

Dropped Python 3.7 compatibility.


## [v1.9.0] - 2023-03-14

Support round-tripping Newick with two annotations per node, one before and one after the
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ classifiers =
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -36,7 +35,7 @@ py_modules =
packages = find:
package_dir =
= src
python_requires = >=3.7
python_requires = >=3.8
install_requires =
include_package_data = True

Expand Down Expand Up @@ -83,7 +82,7 @@ source =
show_missing = true

[tox:tox]
envlist = py37, py38, py39, py310, py311
envlist = py38, py39, py310, py311
isolated_build = true
skip_missing_interpreter = true

Expand Down

0 comments on commit b16cc4b

Please sign in to comment.