Skip to content

Commit b0fcb50

Browse files
committed
Add support for 3.12, update gh workflows
1 parent 4a3aa8a commit b0fcb50

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Set up Python 3.9
20-
uses: actions/setup-python@v3
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: "3.9"
2323
- name: Python info
@@ -39,11 +39,11 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
42-
python-version: ['3.9', '3.10', '3.11']
42+
python-version: ['3.9', '3.10', '3.11', '3.12']
4343
steps:
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
4545
- name: Set up Python ${{ matrix.python-version }}
46-
uses: actions/setup-python@v3
46+
uses: actions/setup-python@v5
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949
- name: Python info

.github/workflows/documentation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
steps:
18-
- uses: actions/checkout@v2
19-
- name: Set up Python 3.10
18+
- uses: actions/checkout@v4
19+
- name: Set up Python 3.12
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: "3.10"
22+
python-version: "3.12"
2323
- name: Python info
2424
shell: bash -l {0}
2525
run: |

.github/workflows/python-publish-dry-run.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
deploy-dry-run:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Set up Python
28-
uses: actions/setup-python@v3
28+
uses: actions/setup-python@v5
2929
with:
3030
python-version: '3.10'
3131
- name: Install dependencies

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Set up Python
26-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: '3.10'
2929
- name: Install dependencies

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ version = "3.0.3"
2323
description = "Load Distributed Temperature Sensing (DTS) files, calibrate the temperature and estimate its uncertainty."
2424
readme = "README.rst"
2525
license = "BSD-3-Clause"
26-
requires-python = ">=3.9, <3.12"
26+
requires-python = ">=3.9, <3.13"
2727
authors = [
2828
{name = "Bas des Tombe, Bart Schilperoort"},
2929
]
@@ -166,7 +166,7 @@ ignore = [
166166
"E501", # Line too long (want to have fixed
167167
]
168168
line-length = 88
169-
exclude = ["docs", "build"]
169+
exclude = ["docs", "build", "tests/data"]
170170
# Allow unused variables when underscore-prefixed.
171171
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
172172
# Minimum supported Python version

0 commit comments

Comments
 (0)