Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion detl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from . import parsing
from .core import DASwareParser, DASwareVersion, DWData

__version__ = "1.1.0"
__version__ = "1.1.1"

parsers = {
DASwareVersion.V4: parsing.dw4.DASware4Parser,
Expand Down
Loading