Skip to content

Commit 2f989d8

Browse files
committed
Fix Pylint
1 parent dda4ef7 commit 2f989d8

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
10+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-20.04
55
tools:
6-
python: "3.8"
6+
python: "3.9"
77

88
sphinx:
99
configuration: docs/conf.py

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Features
3434
Requirements
3535
------------
3636

37-
- **Python 3.8 or higher**
37+
- **Python 3.9 or higher**
3838
- `cloudscraper <https://pypi.org/project/cloudscraper/>`_
3939

4040
Installation
@@ -58,7 +58,7 @@ Getting Started
5858
---------------
5959

6060
Synchronous Example
61-
~~~~~~~~~~~~~~~~~~
61+
~~~~~~~~~~~~~~~~~~~
6262

6363
.. code-block:: python
6464
@@ -92,7 +92,7 @@ Synchronous Example
9292
9393
9494
Asynchronous Example
95-
~~~~~~~~~~~~~~~~~~~
95+
~~~~~~~~~~~~~~~~~~~~
9696

9797
.. code-block:: python
9898

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ akinator.py
44
Installation
55
------------
66

7-
**Python 3.8 or higher is required.**
7+
**Python 3.3 or higher is required.**
88

99
To install the stable version, do the following:
1010

@@ -23,7 +23,7 @@ To install the development version, do the following:
2323
2424
$ git clone https://github.com/Ombucha/akinator.py
2525
26-
Make sure you have the latest version of Python installed, or if you prefer, a Python version of 3.8 or greater.
26+
Make sure you have the latest version of Python installed, or if you prefer, a Python version of 3.9 or greater.
2727

2828
If you have have any other issues feel free to search for duplicates and then create a new issue on GitHub with as much detail as possible. Include the output in your terminal, your OS details and Python version.
2929

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# pylint: skip-file
2+
13
from pathlib import Path
24

35
from setuptools import setup
@@ -21,7 +23,7 @@
2123
"Programming Language :: Python",
2224
"Programming Language :: Python :: 3",
2325
],
24-
python_requires='>= 3.8.0',
26+
python_requires='>= 98.0',
2527
packages = ["akinator"],
2628
include_package_data = True,
2729
install_requires = ["cloudscraper"]

0 commit comments

Comments
 (0)