Skip to content

Commit 685bf0c

Browse files
Stop testing cloudpickle against Python 3.5 (#427)
Co-authored-by: Olivier Grisel <[email protected]>
1 parent a20b804 commit 685bf0c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Diff for: .github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
matrix:
3131
os: [ubuntu-latest, windows-latest, macos-latest]
32-
python_version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10-dev", "pypy3"]
32+
python_version: [3.6, 3.7, 3.8, 3.9, "3.10-dev", "pypy3"]
3333
exclude:
3434
# Do not test all minor versions on all platforms, especially if they
3535
# are not the oldest/newest supported versions

Diff for: CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
dev
55
===
66

7+
- Python 3.5 is no longer supported.
8+
79
- Fix a side effect altering dynamic modules at pickling time.
810
([PR #426](https://github.com/cloudpipe/cloudpickle/pull/426))
911

Diff for: setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def find_version():
3939
'Operating System :: POSIX',
4040
'Operating System :: Microsoft :: Windows',
4141
'Operating System :: MacOS :: MacOS X',
42-
'Programming Language :: Python :: 3.5',
4342
'Programming Language :: Python :: 3.6',
4443
'Programming Language :: Python :: 3.7',
4544
'Programming Language :: Python :: 3.8',
@@ -51,5 +50,5 @@ def find_version():
5150
'Topic :: System :: Distributed Computing',
5251
],
5352
test_suite='tests',
54-
python_requires='>=3.5',
53+
python_requires='>=3.6',
5554
)

0 commit comments

Comments
 (0)