Skip to content

Commit 4148b16

Browse files
committed
Bump version to 1.8.1 with Python 3.7 requires
This update bumps the `python_requires` to be `>=3.7` as the sdist build requires PEP 517 support that is somewhat only guaranteed with the pip that was shipped with Python 3.7 or greater. Since 3.6 has been end of life since December 2021 and the remaining Linux distributions that still use it have system provided packages this shouldn't be a surprise. Signed-off-by: Jordan Borean <[email protected]>
1 parent d885831 commit 4148b16

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ jobs:
5757
version: cp38-macosx_arm64
5858
- os: macOS-12
5959
version: cp37-macosx_x86_64
60-
- os: macOS-12
61-
version: cp36-macosx_x86_64
6260

6361
- os: windows-2022
6462
version: cp310-win_amd64
@@ -76,10 +74,6 @@ jobs:
7674
version: cp37-win_amd64
7775
- os: windows-2022
7876
version: cp37-win32
79-
- os: windows-2022
80-
version: cp36-win_amd64
81-
- os: windows-2022
82-
version: cp36-win32
8377

8478
steps:
8579
- name: Set up environment
@@ -181,7 +175,6 @@ jobs:
181175
- win-py-3.9
182176
- win-py-3.8
183177
- win-py-3.7
184-
- win-py-3.6
185178
arch:
186179
- x64
187180
- x86
@@ -194,8 +187,6 @@ jobs:
194187
pyenv: '3.8'
195188
- name: win-py-3.7
196189
pyenv: '3.7'
197-
- name: win-py-3.6
198-
pyenv: '3.6'
199190

200191
steps:
201192
- name: Check out code

README.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,15 @@ Basic
3636

3737
* a C compiler (such as GCC)
3838

39-
* Python 3.6+ (older releases support older versions, but are unsupported)
39+
* Python 3.7+ (older releases support older versions, but are unsupported)
4040

4141
* the `decorator` python package
4242

4343
Compiling from Scratch
4444
----------------------
4545

46-
To compile from scratch, you will need Cython >= 0.21.1.
46+
To compile from scratch, you will need Cython >= 0.29.29 which is automatically
47+
installed by pip in an isolated build virtual environment.
4748

4849
For Running the Tests
4950
---------------------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def gssapi_modules(lst):
274274

275275
setup(
276276
name='gssapi',
277-
version='1.8.0',
277+
version='1.8.1',
278278
author='The Python GSSAPI Team',
279279
author_email='[email protected]',
280280
packages=['gssapi', 'gssapi.raw', 'gssapi.raw._enum_extensions',
@@ -287,7 +287,7 @@ def gssapi_modules(lst):
287287
long_description=long_desc,
288288
license='LICENSE.txt',
289289
url="https://github.com/pythongssapi/python-gssapi",
290-
python_requires=">=3.6",
290+
python_requires=">=3.7",
291291
classifiers=[
292292
'Development Status :: 5 - Production/Stable',
293293
'Programming Language :: Python',

0 commit comments

Comments
 (0)