Skip to content

Commit

Permalink
set minimum required python version to 3.8 (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
equinor-ruaj authored Sep 29, 2023
1 parent 3beee92 commit 300bf24
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@ def parse_requirements(fname):
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"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",
],
entry_points={
"ert": [
Expand All @@ -77,7 +78,7 @@ def parse_requirements(fname):
setup_requires=SETUP_REQUIREMENTS,
test_suite="tests",
extras_require=EXTRAS_REQUIRE,
python_requires=">=3.6",
python_requires=">=3.8",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
Expand Down

0 comments on commit 300bf24

Please sign in to comment.