Skip to content

Commit 0ee5277

Browse files
committed
Update Python version requirement to 3.11 and bump package version to 0.1.2
1 parent 8d6a960 commit 0ee5277

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ A Python package for reading and writing DCM (Data Conservation Format) files us
2929

3030
## Installation
3131

32-
Ensure you have Python 3.10 or higher installed. Install the package using `pip`:
32+
Ensure you have Python 3.11 or higher installed. Install the package using `pip`:
3333

3434
```bash
3535
pip install git+https://github.com/c0sogi/python-dcm.git
@@ -163,7 +163,7 @@ modifications_dcm = dcm1 % dcm2
163163

164164
## Dependencies
165165

166-
- Python >= 3.10
166+
- Python >= 3.11
167167
- [NumPy](https://numpy.org/) >= 1.20.0
168168
- [Pandas](https://pandas.pydata.org/) >= 1.5.0
169169
- [Matplotlib](https://matplotlib.org/) >= 3.0.0
@@ -223,7 +223,7 @@ A Python package for reading and writing DCM (Data Conservation Format) files us
223223

224224
## Installation
225225

226-
Ensure you have Python 3.10 or higher installed. Install the package using `pip`:
226+
Ensure you have Python 3.11 or higher installed. Install the package using `pip`:
227227

228228
```bash
229229
pip install git+https://github.com/c0sogi/python-dcm.git
@@ -357,7 +357,7 @@ modifications_dcm = dcm1 % dcm2
357357

358358
## Dependencies
359359

360-
- Python >= 3.10
360+
- Python >= 3.11
361361
- [NumPy](https://numpy.org/) >= 1.20.0
362362
- [Pandas](https://pandas.pydata.org/) >= 1.5.0
363363
- [Matplotlib](https://matplotlib.org/) >= 3.0.0

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "python-dcm"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A Python package for reading and writing DCM(Data Conversion Format) for various ECU calibration tools, such as INCA, MDA, EHANDBOOK, CANape, etc."
55
authors = ["c0sogi <dcas@naver.com>"]
66
license = "MIT"
77
readme = "README.md"
88
packages = [{ include = "dcm" }]
99

1010
[tool.poetry.dependencies]
11-
python = ">=3.10"
11+
python = ">=3.11"
1212
numpy = ">=1.20.0,<3"
1313
pandas = ">=1.5.0,<3"
1414
matplotlib = ">=3.0.0,<4"

0 commit comments

Comments
 (0)