Skip to content

Commit b32af01

Browse files
committed
Release v0.1.7: Relax Python version constraint from ==3.10.* to >=3.10
1 parent 1b2f8a3 commit b32af01

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.7] - 2025-07-14
9+
10+
### Changed
11+
- Relaxed Python version requirement from `==3.10.*` to `>=3.10` for improved flexibility
12+
- Enhanced compatibility to support Python 3.10+ versions while maintaining backward compatibility
13+
814
## [0.1.6] - 2025-07-14
915

1016
### Changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[project]
22
name = "codeanalyzer-python"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
description = "Static Analysis on Python source code using Jedi, CodeQL and Treesitter."
55
readme = "README.md"
66
authors = [
77
{ name = "Rahul Krishna", email = "[email protected]" }
88
]
9-
requires-python = "==3.10.*"
9+
requires-python = ">=3.10"
1010

1111
dependencies = [
1212
"jedi>=0.19.2",

0 commit comments

Comments
 (0)