Skip to content

Commit 9b938d2

Browse files
committed
Drop Python3.9
1 parent 371bf8e commit 9b938d2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
16+
python-version: ['3.10', '3.11', '3.12', '3.13']
1717
steps:
1818
- uses: actions/checkout@v4
1919

psplib/parse_psplib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def parse_psplib(loc: Union[str, Path]) -> ProjectInstance:
4242
]
4343
resources = [
4444
Resource(capacity, is_renewable)
45-
for capacity, is_renewable in zip(capacities, renewable)
45+
for capacity, is_renewable in zip(capacities, renewable, strict=True)
4646
]
4747
num_resources = len(resources)
4848

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"License :: OSI Approved :: MIT License",
2222
"Programming Language :: Python :: 3",
2323
]
24-
requires-python = ">=3.9"
24+
requires-python = ">=3.10"
2525
dependencies = []
2626

2727

0 commit comments

Comments
 (0)