Skip to content

Commit

Permalink
run tests on newer pythons
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Oct 24, 2024
1 parent b16cc4b commit eb9554f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ Releasing python-newick
Clone dlce-eva/python-newick and switch to the master branch. Then:

- Do platform test via tox:
```
```shell
$ tox -r
```
Make sure statement coverage is at 100%

- Make sure flake8 passes::
```
```shell
$ flake8 src
```

Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: Apache Software License
Expand Down Expand Up @@ -82,7 +84,7 @@ source =
show_missing = true

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

Expand Down

0 comments on commit eb9554f

Please sign in to comment.