Skip to content

Commit

Permalink
➖ Using Self requires Python>=3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
amarrerod committed Jun 19, 2024
1 parent ed39bd5 commit f10da1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
9 changes: 2 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.2.0"
description = "Python version of the DIGNEA code for instance generation"
authors = [{ name = "Alejandro Marrero", email = "amarrerd@ull.edu.es" }]
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
license = { file = "LICENSE" }
keywords = [
"dignea",
Expand All @@ -24,7 +24,6 @@ classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
'Topic :: Scientific/Engineering',
Expand All @@ -45,11 +44,7 @@ test = ["pytest>=3"]


[tool.cibuildwheel]
build = [
"cp310-manylinux_x86_64",
"cp311-manylinux_x86_64",
"cp312-manylinux_x86_64",
]
build = ["cp311-manylinux_x86_64", "cp312-manylinux_x86_64"]
before-test = "python -m pip install -r requirements.txt"
test-requires = "pytest"
test-command = "pytest --doctest-modules {project}/tests"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,13 @@ def __str__(self):
setup(
author="Alejandro Marrero",
author_email="amarrerd@ull.edu.es",
python_requires=">=3.10",
python_requires=">=3.11",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
Expand Down

0 comments on commit f10da1e

Please sign in to comment.