Skip to content

Commit 2b2acb8

Browse files
committed
chore(python): change version
1 parent b10787e commit 2b2acb8

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[flake8]
22
max-line-length = 88
3-
extend-ignore = E203
3+
extend-ignore = E203

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.12"]
10+
python-version: ["3.10"]
1111

1212
steps:
1313
- uses: actions/checkout@v4
@@ -21,8 +21,8 @@ jobs:
2121
pip install .[dev]
2222
- name: Lint with flake8, black, mypy
2323
run: |
24-
flake8 src/
25-
black --check src/
24+
flake8 .
25+
black --check .
2626
mypy -p hario_core
2727
- name: Test with pytest
2828
run: |
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Python
3737
uses: actions/setup-python@v5
3838
with:
39-
python-version: '3.12'
39+
python-version: '3.10'
4040
- name: Install dependencies
4141
run: |
4242
python -m pip install --upgrade pip

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ MIT License. See [LICENSE](LICENSE).
9090

9191
## Supported Python Versions
9292

93-
- Python 3.12+
93+
- Python 3.10+

docs/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- Improved extensibility: custom entry models via `register_entry_model`.
1010
- Improved type safety and validation throughout the codebase.
1111
- Docs now explain why normalization and deterministic IDs matter for analytics and deduplication.
12-
- Requires Python >=3.12.
12+
- Requires Python >=3.10.
1313

1414
## v0.2.0
1515

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ version = "0.3.0"
88
description = "Modern, type-safe, and extensible library for parsing, transforming, and analyzing HAR (HTTP Archive) files."
99
authors = [{name = "Vasiliy Pikulev", email = "pikulev.vasiliy@gmail.com"}]
1010
readme = "README.md"
11-
requires-python = ">=3.12"
11+
requires-python = ">=3.10"
1212
classifiers = [
1313
"Development Status :: 4 - Beta",
1414
"Intended Audience :: Developers",
1515
"License :: OSI Approved :: MIT License",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.10",
1818
"Topic :: Internet :: Log Analysis",
1919
"Topic :: Software Development :: Libraries :: Python Modules",
2020
"Typing :: Typed",

0 commit comments

Comments
 (0)