Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tox-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Run black
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.13
- name: install black
run: pip install black
- name: run black
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9]
python: [3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pymzml==2.5.1
pymzml==2.6.0
openpyxl==3.0.4
nose
tox
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ envlist=py36,py37,coverage,docu

[testenv]
deps =
-Ur{toxinidir}/requirements.txt
-r{toxinidir}/requirements.txt
commands =
nosetests

[testenv:docu]
deps =
-Ur{toxinidir}/docs/requirements.txt
-r{toxinidir}/docs/requirements.txt
changedir = {toxinidir}/docs
commands =
sphinx-build -b html source build
Expand Down
Loading