Skip to content

Commit

Permalink
Officially drop python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
tobgu committed Oct 18, 2023
1 parent d19cc72 commit 4ee2c66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ In this regard, thaw operates as the inverse of freeze so will thaw values insid
Compatibility
-------------
Pyrsistent is developed and tested on Python 3.7+ and PyPy3.
Pyrsistent is developed and tested on Python 3.8+ and PyPy3.
Performance
-----------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ def build_extension(self, ext):
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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',
'Programming Language :: Python :: Implementation :: PyPy',
],
test_suite='tests',
Expand All @@ -83,5 +83,5 @@ def build_extension(self, ext):
cmdclass={'build_ext': custom_build_ext},
packages=['pyrsistent'],
package_data={'pyrsistent': ['py.typed', '__init__.pyi', 'typing.pyi']},
python_requires='>=3.7',
python_requires='>=3.8',
)

0 comments on commit 4ee2c66

Please sign in to comment.