Skip to content

Commit 99c8924

Browse files
author
Jon Wedell
committed
Drop official support for EOL python3.6
1 parent 3f3e40b commit 99c8924

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/continous_integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-latest, windows-latest, macos-latest]
18-
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
18+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Setup python version ${{ matrix.python-version }}

docs/release-notes.rst

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Other changes:
1313

1414
- Updates to the package metadata to tell PyPI that Python versions through 3.12 are supported.
1515
- Minor updates to the documentation.
16+
- Ended official support for end-of-life Python 3.6 and stopped building wheels for it. You should
17+
still be able to install on 3.6 if you are able to build cnmrstar from source. Alternatively, use version 3.3.2.
1618

1719
3.3.2
1820
~~~~~

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def get_version():
2929
packages=['pynmrstar'],
3030
ext_modules=[cnmrstar],
3131
install_requires=['requests>=2.21.0,<=3'],
32-
python_requires='>=3.6',
32+
python_requires='>=3.7',
3333
author='Jon Wedell',
3434
author_email='[email protected]',
3535
description='PyNMR-STAR provides tools for reading, writing, modifying, and interacting with NMR-STAR files. '
@@ -46,7 +46,6 @@ def get_version():
4646
'Development Status :: 6 - Mature',
4747
'Environment :: Console',
4848
'Programming Language :: Python :: 3 :: Only',
49-
'Programming Language :: Python :: 3.6',
5049
'Programming Language :: Python :: 3.7',
5150
'Programming Language :: Python :: 3.8',
5251
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)