Skip to content

Commit

Permalink
Remove support for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
takos22 committed Feb 21, 2024
1 parent 99f8e67 commit f2b8c3a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Pythonic wrapper for the undocumented `CodinGame <https://www.codingame.com/>`_
Installation
------------

**Python 3.7 or higher is required.**
**Python 3.8 or higher is required.**

Install ``codingame`` with pip:

Expand Down
2 changes: 1 addition & 1 deletion docs/.readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ sphinx:

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
version: 3.8
install:
- requirements: docs/requirements.txt
2 changes: 1 addition & 1 deletion docs/user_guide/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This is the documentation for the ``codingame`` module.
Prerequisites
-------------

**Python 3.7 or higher is required.**
**Python 3.8 or higher is required.**


.. _installing:
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def get_requirements(filename: str = "requirements.txt") -> typing.List[str]:
author="takos22",
author_email="takos2210@gmail.com",
packages=get_packages("codingame"),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=get_requirements(),
extras_require=extra_requires,
project_urls={
Expand All @@ -76,9 +76,10 @@ def get_requirements(filename: str = "requirements.txt") -> typing.List[str]:
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
],
)

0 comments on commit f2b8c3a

Please sign in to comment.