Skip to content

Commit a2ea917

Browse files
committed
feat(ci): test on Python 3.5
1 parent 353b192 commit a2ea917

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ jobs:
1717
pytest:
1818
strategy:
1919
matrix:
20-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14.0-alpha.5"]
20+
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14.0-alpha.5"]
2121
include:
22+
- python-version: "3.5"
23+
os: ubuntu-20.04
2224
- python-version: "3.6"
2325
os: ubuntu-20.04
2426
- python-version: "3.7"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pip install intervaltree
2626
Features
2727
--------
2828

29-
* Supports Python 2.7 and Python 3.6+ (Tested under 2.7, and 3.6 thru 3.11)
29+
* Supports Python 2.7 and Python 3.5+ (Tested under 2.7, and 3.5 thru 3.14)
3030
* Initializing
3131
* blank `tree = IntervalTree()`
3232
* from an iterable of `Interval` objects (`tree = IntervalTree(intervals)`)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
'Programming Language :: Python :: 2',
1818
'Programming Language :: Python :: 2.7',
1919
'Programming Language :: Python :: 3',
20+
'Programming Language :: Python :: 3.5',
2021
'Programming Language :: Python :: 3.6',
2122
'Programming Language :: Python :: 3.7',
2223
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)