Skip to content

Commit 113ab4b

Browse files
jagapioucopybara-github
authored andcommitted
Require Python >= 3.12
PiperOrigin-RevId: 837471831 Change-Id: I86a9d66e56cf90e90cb346308c2571c252784302
1 parent 8afe2a4 commit 113ab4b

File tree

5 files changed

+3
-6
lines changed

5 files changed

+3
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// For format details, see https://aka.ms/devcontainer.json
22
{
33
"name": "Concordia",
4-
"image": "mcr.microsoft.com/devcontainers/python:0-3.11",
4+
"image": "mcr.microsoft.com/devcontainers/python:0-3.12",
55
"postCreateCommand": "bin/install.sh",
66
"customizations": {
77
"vscode": {

.github/workflows/pypi-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ jobs:
5656
- ubuntu-24.04
5757
- ubuntu-24.04-arm
5858
python-version:
59-
- '3.11'
6059
- '3.12'
6160
- '3.13'
6261
- '3.14'

.github/workflows/pypi-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ jobs:
4848
- ubuntu-24.04
4949
- ubuntu-24.04-arm
5050
python-version:
51-
- '3.11'
5251
- '3.12'
5352
- '3.13'
5453
- '3.14'

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11
1+
3.12

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,13 @@ def _remove_excluded(description: str) -> str:
5858
'Operating System :: POSIX :: Linux',
5959
'Operating System :: MacOS :: MacOS X',
6060
'Programming Language :: Python :: 3 :: Only',
61-
'Programming Language :: Python :: 3.11',
6261
'Programming Language :: Python :: 3.12',
6362
'Programming Language :: Python :: 3.13',
6463
'Topic :: Scientific/Engineering :: Artificial Intelligence',
6564
],
6665
packages=setuptools.find_packages(include=['concordia', 'concordia.*']),
6766
package_data={},
68-
python_requires='>=3.11',
67+
python_requires='>=3.12',
6968
install_requires=(
7069
'absl-py',
7170
'boto3',

0 commit comments

Comments
 (0)