Skip to content

Commit abc8938

Browse files
package: drop Python 3.6 support
Python 3.6 EOL is 2021-12-23 [1]. Current build script no longer supports Python 3.6 due to `packaging` Python dependency bump. (And fixing the issue is more than just fixating older `packaging` version as a dependency.) https://devguide.python.org/versions/
1 parent f1c9302 commit abc8938

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.github/workflows/testing.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
- '2.11'
3434
- 'master'
3535
python:
36-
- '3.6'
3736
- '3.7'
3837
- '3.8'
3938
- '3.9'
@@ -157,7 +156,7 @@ jobs:
157156
path: 'release/linux/x86_64/2.10/'
158157
- bundle: 'sdk-gc64-2.11.0-0-r563.linux.x86_64'
159158
path: 'release/linux/x86_64/2.11/'
160-
python: ['3.6', '3.11']
159+
python: ['3.7', '3.11']
161160

162161
steps:
163162
- name: Clone the connector
@@ -225,7 +224,7 @@ jobs:
225224
tarantool:
226225
- '2.11'
227226
python:
228-
- '3.6'
227+
- '3.7'
229228
- '3.11'
230229
steps:
231230
- name: Clone the connector repo
@@ -278,7 +277,7 @@ jobs:
278277
tarantool:
279278
- '2.11.0.g247a9a418-1'
280279
python:
281-
- '3.6'
280+
- '3.7'
282281
- '3.11'
283282

284283
steps:
@@ -348,7 +347,7 @@ jobs:
348347
tarantool:
349348
- '2.11.0.g247a9a418-1'
350349
python:
351-
- '3.6'
350+
- '3.7'
352351
- '3.11'
353352
steps:
354353
- name: Clone the connector repo

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## Unreleased
8+
9+
### Changed
10+
- Drop Python 3.6 support (PR #327).
11+
712
## 1.2.0 - 2024-03-27
813

914
### Added

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
msgpack
22
pytz
3-
dataclasses; python_version <= '3.6'

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def get_dependencies(filename):
112112
command_options=command_options,
113113
install_requires=get_dependencies('requirements.txt'),
114114
setup_requires=[
115-
'setuptools_scm==6.4.2',
115+
'setuptools_scm==7.1.0',
116116
],
117-
python_requires='>=3.6',
117+
python_requires='>=3.7',
118118
)

0 commit comments

Comments
 (0)