Skip to content

Commit e360dfd

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

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/tests.yml

Lines changed: 7 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"
@@ -44,7 +46,9 @@ jobs:
4446
uses: actions/setup-python@v5
4547
with:
4648
python-version: ${{ matrix.python-version }}
47-
- name: Display Python verison
49+
env:
50+
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
51+
- name: Display Python version
4852
run: python -c "import sys; print(sys.version)"
4953
- name: Install dependencies
5054
run: |
@@ -60,7 +64,7 @@ jobs:
6064
container: coatldev/six:latest
6165
steps:
6266
- uses: actions/checkout@v4
63-
- name: Display Python verison
67+
- name: Display Python version
6468
run: python2 -c "import sys; print(sys.version)"
6569
- name: Install dependencies
6670
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)