File tree Expand file tree Collapse file tree 3 files changed +14
-15
lines changed Expand file tree Collapse file tree 3 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
- uses : actions/checkout@v4
17
17
with :
18
18
submodules : recursive
19
- - name : Set up Python 3.9
19
+ - name : Set up Python 3.10
20
20
uses : actions/setup-python@v5
21
21
with :
22
- python-version : " 3.9 "
22
+ python-version : " 3.10 "
23
23
- name : Install tox
24
24
run : pip install tox
25
25
- name : Lint
@@ -36,10 +36,10 @@ jobs:
36
36
- uses : actions/checkout@v4
37
37
with :
38
38
submodules : recursive
39
- - name : Set up Python 3.9
39
+ - name : Set up Python 3.10
40
40
uses : actions/setup-python@v5
41
41
with :
42
- python-version : " 3.9 "
42
+ python-version : " 3.10 "
43
43
- name : Install isal
44
44
run : sudo apt-get install libisal-dev
45
45
- name : Install tox and upgrade setuptools and pip
@@ -54,24 +54,22 @@ jobs:
54
54
strategy :
55
55
matrix :
56
56
python-version :
57
- - " 3.9"
58
57
- " 3.10"
59
58
- " 3.11"
60
59
- " 3.12"
61
60
- " 3.13"
62
- - " 3.13t"
63
- - " 3.14-dev"
64
- - " 3.14t-dev"
65
- - " pypy-3.9"
61
+ - " 3.14"
62
+ - " 3.14t"
66
63
- " pypy-3.10"
64
+ - " pypy-3.11"
67
65
os : ["ubuntu-latest"]
68
66
include :
69
67
- os : " macos-13"
70
- python-version : " 3.9 "
71
- - os : " macos-14 "
68
+ python-version : " 3.10 "
69
+ - os : " macos-latest "
72
70
python-version : " 3.10"
73
71
- os : " windows-latest"
74
- python-version : " 3.9 "
72
+ python-version : " 3.10 "
75
73
steps :
76
74
- uses : actions/checkout@v4
77
75
with :
80
78
uses : actions/setup-python@v5
81
79
with :
82
80
python-version : ${{ matrix.python-version }}
81
+ allow-prereleases : true
83
82
- name : Install tox and upgrade setuptools
84
83
run : pip install --upgrade tox setuptools
85
84
- name : Install build dependencies (Linux) # Yasm in pypa/manylinux images.
@@ -107,7 +106,7 @@ jobs:
107
106
strategy :
108
107
matrix :
109
108
python_version :
110
- - " 3.9 "
109
+ - " 3.10 "
111
110
steps :
112
111
- uses : actions/checkout@v4
113
112
with :
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ Changelog
10
10
11
11
version 1.8.0-dev
12
12
-----------------
13
- + Python 3.8 is no longer supported.
13
+ + Python 3.14 is supported.
14
+ + Python 3.8 and 3.9 are no longer supported.
14
15
+ Fix an issue where flushing using igzip_threaded caused a gzip end of stream
15
16
and started a new gzip stream. In essence creating a concatenated gzip
16
17
stream. Now it is in concordance with how single threaded gzip streams
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ requires-python = ">=3.9" # Because of setuptools version
17
17
classifiers = [
18
18
" Programming Language :: Python :: 3 :: Only" ,
19
19
" Programming Language :: Python :: 3" ,
20
- " Programming Language :: Python :: 3.9" ,
21
20
" Programming Language :: Python :: 3.10" ,
22
21
" Programming Language :: Python :: 3.11" ,
23
22
" Programming Language :: Python :: 3.12" ,
You can’t perform that action at this time.
0 commit comments