Skip to content

Commit 8138fd4

Browse files
committed
pylint: disable=import-error
bump version requires to 3.8 as CI didn't work on 3.7
1 parent 1037bd7 commit 8138fd4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
"""Setup module for python-codex32."""
22

3-
from setuptools import setup, find_packages
3+
with open("README.md", encoding="utf-8") as f:
4+
long_description = f.read()
5+
6+
from setuptools import setup, find_packages # pylint: disable=import-error
47

58
setup(
69
name="python-codex32",
@@ -20,7 +23,5 @@
2023
"License :: OSI Approved :: MIT License",
2124
"Operating System :: OS Independent",
2225
],
23-
python_requires=">=3.7",
26+
python_requires=">=3.8",
2427
)
25-
with open("README.md", encoding="utf-8") as f:
26-
long_description = f.read()

0 commit comments

Comments
 (0)