Skip to content

Commit 943bd5c

Browse files
committed
Updated version number
1 parent f8e1259 commit 943bd5c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [ '3.7', '3.8']
12+
python-version: [ '3.7', '3.8', '3.9', '3.10']
1313

1414
name: Test Interpolation.py (Python ${{ matrix.python-version }})
1515
steps:
@@ -28,8 +28,8 @@ jobs:
2828
- name: Install dependencies
2929
run: poetry install
3030

31-
# - name: Code Quality
32-
# run: poetry run black . --check
31+
- name: Code Quality
32+
run: poetry run black . --check
3333

3434
- name: Test with pytest
3535
run: poetry run pytest

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "interpolation"
3-
version = "2.2.1"
3+
version = "2.2.2"
44
readme = "README.md"
55
description = "Interpolation in Python"
66
authors = [
@@ -14,7 +14,7 @@ maintainers = [
1414
license = "BSD-2-Clause"
1515

1616
[tool.poetry.dependencies]
17-
python = ">=3.7, <3.10"
17+
python = ">=3.7, <3.11"
1818
numba = ">=0.47"
1919
numpy = "^1.18.1"
2020
tempita = "^0.5.2"

0 commit comments

Comments
 (0)