Skip to content

Commit a501847

Browse files
committed
@mrnicegyu11 review: updates 3.11
1 parent 9450b1d commit a501847

File tree

26 files changed

+26
-26
lines changed

26 files changed

+26
-26
lines changed

packages/aws-library/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
3333
"version": Path(CURRENT_DIR / "VERSION").read_text().strip(),
3434
"author": "Sylvain Anderegg (sanderegg)",
3535
"description": "Core service library for AWS APIs",
36-
"python_requires": "~=3.10",
36+
"python_requires": "~=3.11",
3737
"classifiers": [
3838
"Development Status :: 2 - Pre-Alpha",
3939
"Intended Audience :: Developers",

packages/dask-task-models-library/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
3636
"version": Path(CURRENT_DIR / "VERSION").read_text().strip(),
3737
"author": "Sylvain Anderegg (sanderegg)",
3838
"description": "Core service library for simcore pydantic dask task models",
39-
"python_requires": "~=3.10",
39+
"python_requires": "~=3.11",
4040
"classifiers": [
4141
"Development Status :: 2 - Pre-Alpha",
4242
"Intended Audience :: Developers",

packages/models-library/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
3434
"version": Path(CURRENT_DIR / "VERSION").read_text().strip(),
3535
"author": "Sylvain Anderegg (sanderegg)",
3636
"description": "Core service library for simcore pydantic models",
37-
"python_requires": "~=3.10",
37+
"python_requires": "~=3.11",
3838
"classifiers": [
3939
"Development Status :: 2 - Pre-Alpha",
4040
"Intended Audience :: Developers",

packages/notifications-library/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
3838
"version": Path(CURRENT_DIR / "VERSION").read_text().strip(),
3939
"author": "Pedro Crespo-Valero (pcrespov)",
4040
"description": "simcore library for user notifications e.g. emails, sms, etc",
41-
"python_requires": "~=3.10",
41+
"python_requires": "~=3.11",
4242
"classifiers": [
4343
"Development Status :: 2 - Pre-Alpha",
4444
"Intended Audience :: Developers",

packages/pytest-simcore/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"description": "pytest plugin with fixtures and test helpers for osparc-simcore repo modules",
1818
"py_modules": ["pytest_simcore"],
1919
# WARNING: this is used in frozen services as well !!!!
20-
"python_requires": ">=3.6",
20+
"python_requires": "~=3.11",
2121
"install_requires": ["pytest>=3.5.0"],
2222
"extras_require": {
2323
"all": [

packages/service-integration/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
6464
"Framework :: Pytest",
6565
],
6666
"long_description": Path(CURRENT_DIR / "README.md").read_text(),
67-
"python_requires": ">=3.6",
67+
"python_requires": "~=3.11",
6868
"license": "MIT license",
6969
"install_requires": INSTALL_REQUIREMENTS,
7070
"packages": find_packages(where="src"),

packages/service-library/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
3535
"author": "Pedro Crespo-Valero (pcrespov)",
3636
"description": "Core service library for simcore (or servicelib)",
3737
"license": "MIT license",
38-
"python_requires": "~=3.10",
38+
"python_requires": "~=3.11",
3939
"install_requires": tuple(PROD_REQUIREMENTS),
4040
"packages": find_packages(where="src"),
4141
"package_data": {"": ["py.typed"]},

packages/simcore-sdk/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
3636
"packages": find_packages(where="src"),
3737
"package_data": {"": ["py.typed"]},
3838
"package_dir": {"": "src"},
39-
"python_requires": ">=3.6",
39+
"python_requires": "~=3.11",
4040
"install_requires": INSTALL_REQUIREMENTS,
4141
"tests_require": TEST_REQUIREMENTS,
4242
"extras_require": {"test": TEST_REQUIREMENTS},

services/agent/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
4545
"description": DESCRIPTION,
4646
"long_description": README,
4747
"license": "MIT license",
48-
"python_requires": "~=3.10",
48+
"python_requires": "~=3.11",
4949
"packages": find_packages(where="src"),
5050
"package_dir": {
5151
"": "src",

services/api-server/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def read_reqs(reqs_path: Path) -> set[str]:
4646
"description": DESCRIPTION,
4747
"long_description": README,
4848
"license": "MIT license",
49-
"python_requires": "~=3.10",
49+
"python_requires": "~=3.11",
5050
"packages": find_packages(where="src"),
5151
"package_dir": {
5252
"": "src",

0 commit comments

Comments
 (0)