-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
## v0.4.3 (2023-11-12) | ||
|
||
### Fix | ||
|
||
- remove upper bound from dependencies in pyproject.toml | ||
|
||
## v0.4.2 (2023-10-07) | ||
|
||
### Fix | ||
|
||
- filter syntax warnings | ||
|
||
## v0.4.1 (2023-10-01) | ||
|
||
### Fix | ||
|
||
- fix nonlocal/global handling | ||
|
||
## v0.4.0 (2023-10-01) | ||
|
||
### Feat | ||
|
||
- 3.12 support | ||
|
||
### Fix | ||
|
||
- **3.7**: continue is not allowed in finally clause | ||
|
||
### Refactor | ||
|
||
- remove compile() | ||
|
||
## v0.3.0 (2023-09-05) | ||
|
||
## v0.2.0 (2023-08-05) | ||
|
||
### Feat | ||
|
||
- 3.7 support | ||
- typing | ||
- 3.8 support | ||
- 3.9 support | ||
- 3.10 support | ||
|
||
### Fix | ||
|
||
- typing & updated pre-commit checks | ||
|
||
## v0.1.0 (2023-05-11) | ||
|
||
### Feat | ||
|
||
- added cli interface | ||
|
||
### Fix | ||
|
||
- changed propabilities to generate more expressions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,27 @@ | ||
[tool.poetry] | ||
name = "pysource-codegen" | ||
version = "0.4.2" | ||
version = "0.4.3" | ||
description = "" | ||
authors = ["Your Name <[email protected]>"] | ||
readme = "README.md" | ||
packages = [{include = "pysource_codegen"}] | ||
|
||
[tool.commitizen] | ||
changelog_incremental = true | ||
major_version_zero = true | ||
tag_format = "v$major.$minor.$patch$prerelease" | ||
update_changelog_on_bump = true | ||
version_files = [ | ||
"pysource_codegen/__init__.py:version" | ||
] | ||
version_provider = "poetry" | ||
|
||
[tool.poetry.scripts] | ||
pysource-codegen = "pysource_codegen.__main__:run" | ||
|
||
|
||
|
||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.7" | ||
astunparse = { version = ">=1.6.3", python ="<3.9"} | ||
|