Skip to content

Commit

Permalink
fix: downgrade python-semantic-release version
Browse files Browse the repository at this point in the history
  • Loading branch information
luizdesuo committed Nov 2, 2023
1 parent 9467ff7 commit 893a24b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ python = "^3.11"
click = ">=8.1.7"

[tool.poetry.group.dev.dependencies]
python-semantic-release = ">=8.3.0"
python-semantic-release = "^7.33.2"
pre-commit = ">=3.5.0"
nox = ">=2023.4.22"

Expand Down Expand Up @@ -78,15 +78,15 @@ lines_after_imports = 2
line-length = 88

[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version"] # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "pip install poetry && poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
version_variable = "pyproject.toml:version" # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
20 changes: 10 additions & 10 deletions {{cookiecutter.project_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ icontract = ">=2.6.4"
{% endif -%}

[tool.poetry.group.dev.dependencies]
python-semantic-release = ">=8.3.0"
python-semantic-release = "^7.33.2"
pre-commit = ">=3.5.0"
nox = ">=2023.4.22"

Expand Down Expand Up @@ -103,15 +103,15 @@ lines_after_imports = 2
line-length = 88

[tool.semantic_release]
version_toml = ["pyproject.toml:tool.poetry.version"] # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "pip install poetry && poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
version_variable = "pyproject.toml:version" # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 893a24b

Please sign in to comment.