Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
68989a3
Add a dummy non-empty environment when using assert_python_{failure,ok}
ellert Mar 14, 2025
26cf5d2
Merge pull request #227 from ellert/non-empty-env
rhpvorderman Mar 17, 2025
d08488b
Update changelog version
rhpvorderman Mar 18, 2025
0215519
Move to setuptools-scm
rhpvorderman May 27, 2025
1da70a5
Include tests in source distribution
rhpvorderman May 27, 2025
26c2b45
Fix CFLAGS on default behavior for later setuptools versions
rhpvorderman May 27, 2025
7366448
Update changelog with build changes
rhpvorderman May 27, 2025
fc7d5a5
Update supported python versions
rhpvorderman May 27, 2025
993f529
Merge pull request #232 from pycompression/modernpackaging
rhpvorderman May 27, 2025
b749782
Mark extensions as free-threading-compatible and build wheels
lysnikolaou May 28, 2025
5ef868b
Fix flush implementation
rhpvorderman Jun 24, 2025
4398326
Add a test for correctly flushing data to disk
rhpvorderman Jun 24, 2025
85e9d48
Add multithreaded flushing fix to the CHANGELOG
rhpvorderman Jun 24, 2025
0fef0a9
Fix test for older versions of python
rhpvorderman Jun 24, 2025
6ab0c15
Merge pull request #234 from pycompression/issue230
rhpvorderman Jun 24, 2025
eb3e5c2
Fix a typo in a comment
ellert Jul 2, 2025
52dba92
Merge pull request #235 from ellert/comment-typo
rhpvorderman Jul 2, 2025
b8ba9d3
Merge branch 'develop' into free-threading
lysnikolaou Sep 8, 2025
ffd757b
Add test for free threading that compresses and decompresses bytes
lysnikolaou Sep 8, 2025
a3a3a15
Test 3.14 on CI
lysnikolaou Sep 8, 2025
b235078
Remove python 3.9 support and add 3.14 support
rhpvorderman Sep 9, 2025
7d204aa
Merge pull request #242 from pycompression/314
rhpvorderman Sep 9, 2025
edf5371
Merge branch 'develop' into free-threading
rhpvorderman Sep 9, 2025
474783e
Only support 3.14 for threaded builds.
rhpvorderman Sep 9, 2025
0b9574a
Fix linting issues
rhpvorderman Sep 9, 2025
9492937
Update test_freethreading.py
rhpvorderman Sep 9, 2025
8e9681d
Credit where it's due
rhpvorderman Sep 9, 2025
bb40ffa
Merge pull request #233 from lysnikolaou/free-threading
rhpvorderman Sep 9, 2025
ddcc966
Prepare release 1.8.0
rhpvorderman Sep 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_gzip_compliance.py
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ def test_decompress_infile_outfile(self):
# If the env_vars argument to assert_python_failure or assert_python_ok
# is empty the test will run in isolated mode (-I) which means that the
# PYTHONPATH environment variable will be ignored and the test fails
# because the isal module can not be found, or the test is run usung the
# because the isal module can not be found, or the test is run using the
# system installed version of the module instead of the newly built
# module that should be tested.
#
Expand Down
Loading