Skip to content

Commit

Permalink
feat: add support for Python 3.9 fixes #2
Browse files Browse the repository at this point in the history
version 0.3.3
  • Loading branch information
reka committed Dec 21, 2022
1 parent 7f55285 commit a8cacee
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.3] - 2022-12-21

### Added

* Tests with tox
* Tests with tox [GH-1](https://github.com/sourcery-ai/sourcery-rules-generator/issues/1)
* Support Python 3.9 [GH-2](https://github.com/sourcery-ai/sourcery-rules-generator/issues/2)

## [0.3.2] - 2022-12-16

Expand Down
5 changes: 3 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sourcery-rules-generator"
version = "0.3.2"
version = "0.3.3"
description = "Generate architecture rules for Python projects."
license = "MIT"
authors = ["reka <reka@sourcery.ai>"]
Expand All @@ -17,7 +17,7 @@ classifiers = [
sourcery-rules = "sourcery_rules_generator.cli.cli:app"

[tool.poetry.dependencies]
python = "^3.10"
python = "^3.9"
typer = {extras = ["all"], version = "0.7.0"}
rich = "^12.6.0"
pydantic = "^1.10.2"
Expand All @@ -40,7 +40,7 @@ profile = "black"
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py310,py311
envlist = py39,py310,py311
[testenv]
allowlist_externals = poetry
Expand Down
2 changes: 1 addition & 1 deletion sourcery_rules_generator/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.2"
__version__ = "0.3.3"
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.3.2"
assert __version__ == "0.3.3"

0 comments on commit a8cacee

Please sign in to comment.