Skip to content

Commit bdea529

Browse files
committed
drop python 3.7 support
1 parent e548185 commit bdea529

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

.github/workflows/ci-tsdownsample.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,7 @@ jobs:
4646
matrix:
4747
os: ['windows-latest', 'macOS-latest', 'ubuntu-latest']
4848
rust: ['nightly'] # ['stable', 'beta']
49-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', "3.13"]
50-
exclude: # Python < 3.8 is not supported on Apple Silicon ARM64
51-
- os: macOS-latest
52-
python-version: '3.7'
53-
- os: ubuntu-latest
54-
python-version: '3.7'
55-
include: # So run on older version on Intel CPU
56-
- os: macOS-13
57-
python-version: '3.7'
58-
- os: ubuntu-22.04
59-
python-version: '3.7'
49+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', "3.13"]
6050

6151
env:
6252
PYTHON: ${{ matrix.python-version }}
@@ -165,7 +155,7 @@ jobs:
165155
target: ${{ matrix.target }}
166156
manylinux: ${{ matrix.manylinux || 'auto' }}
167157
container: ${{ matrix.container }}
168-
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.7 3.8 3.9 3.10 3.11 3.12 3.13' }}
158+
args: --release --out dist --interpreter ${{ matrix.interpreter || '3.8 3.9 3.10 3.11 3.12 3.13' }}
169159

170160
- run: ${{ matrix.ls || 'ls -lh' }} dist/
171161

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "maturin"
66
name = "tsdownsample"
77
description = "Time series downsampling in rust"
88
version = "0.1.4"
9-
requires-python = ">=3.7"
9+
requires-python = ">=3.8"
1010
dependencies = ["numpy"]
1111
authors = [{name = "Jeroen Van Der Donckt"}]
1212
readme = "README.md"
@@ -16,7 +16,6 @@ classifiers = [
1616
'Intended Audience :: Developers',
1717
'License :: OSI Approved :: MIT License',
1818
'Programming Language :: Python :: 3',
19-
'Programming Language :: Python :: 3.7',
2019
'Programming Language :: Python :: 3.8',
2120
'Programming Language :: Python :: 3.9',
2221
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)