Skip to content

Commit

Permalink
Merge from 2.x: PR #471
Browse files Browse the repository at this point in the history
Drop support for Python 3.7
  • Loading branch information
ccordoba12 committed Oct 10, 2023
2 parents 203343a + 3d37912 commit d635914
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements/posix.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cloudpickle
ipykernel>=6.23.2,<7
ipython>=7.31.1,<9
ipython>=8.12.2,<9
jupyter_client>=7.4.9,<9
pyzmq>=22.1.0
wurlitzer>=1.0.3
Expand Down
2 changes: 1 addition & 1 deletion requirements/windows.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cloudpickle
ipykernel>=6.23.2,<7
ipython>=7.31.1,<9
ipython>=8.12.2,<9
jupyter_client>=7.4.9,<9
pyzmq>=22.1.0
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def get_version(module='spyder_kernels'):
REQUIREMENTS = [
'cloudpickle',
'ipykernel>=6.23.2,<7',
'ipython>=7.31.1,<9,!=8.8.0,!=8.9.0,!=8.10.0,!=8.11.0,!=8.12.0,!=8.12.1',
'ipython>=8.12.2,<8.13; python_version=="3.8"',
'ipython>=8.13.0,<9; python_version>"3.8"',
'jupyter-client>=7.4.9,<9',
'pyzmq>=22.1.0',
'wurlitzer>=1.0.3;platform_system!="Windows"',
Expand Down Expand Up @@ -79,7 +80,7 @@ def get_version(module='spyder_kernels'):
install_requires=REQUIREMENTS,
extras_require={'test': TEST_REQUIREMENTS},
include_package_data=True,
python_requires='>=3.7',
python_requires='>=3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Jupyter',
Expand All @@ -88,10 +89,11 @@ def get_version(module='spyder_kernels'):
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Interpreters',
]
)

0 comments on commit d635914

Please sign in to comment.