Skip to content

Commit f1d8540

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

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
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"
@@ -48,7 +50,6 @@ jobs:
4850
run: python -c "import sys; print(sys.version)"
4951
- name: Install dependencies
5052
run: |
51-
python -m pip install --upgrade pip
5253
pip install -r requirements/pytest.txt
5354
- name: Test with pytest
5455
run: |
@@ -64,7 +65,6 @@ jobs:
6465
run: python2 -c "import sys; print(sys.version)"
6566
- name: Install dependencies
6667
run: |
67-
python2 -m pip install --upgrade pip
6868
pip2 install -r requirements/pytest.txt
6969
- name: Test with pytest
7070
run: |

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)