python-semantic-release 8.0.0a7__tar.gz → 8.0.0rc1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python-semantic-release-8.0.0a7/python_semantic_release.egg-info → python-semantic-release-8.0.0rc1}/PKG-INFO +1 -1
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/pyproject.toml +2 -2
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1/python_semantic_release.egg-info}/PKG-INFO +1 -1
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/__init__.py +1 -1
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/config.py +2 -2
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/conftest.py +1 -1
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/test_changelog.py +1 -1
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/test_version.py +12 -3
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/AUTHORS.rst +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/LICENSE +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/MANIFEST.in +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/README.rst +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/python_semantic_release.egg-info/SOURCES.txt +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/python_semantic_release.egg-info/dependency_links.txt +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/python_semantic_release.egg-info/entry_points.txt +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/python_semantic_release.egg-info/requires.txt +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/python_semantic_release.egg-info/top_level.txt +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/__main__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/changelog/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/changelog/context.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/changelog/release_history.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/changelog/template.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/commands/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/commands/changelog.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/commands/generate_config.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/commands/main.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/commands/publish.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/commands/version.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/common.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/const.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/github_actions_output.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/masking_filter.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/util.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/commit_parser/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/commit_parser/_base.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/commit_parser/angular.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/commit_parser/emoji.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/commit_parser/scipy.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/commit_parser/tag.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/commit_parser/token.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/commit_parser/util.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/const.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/data/templates/CHANGELOG.md.j2 +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/data/templates/release_notes.md.j2 +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/enums.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/errors.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/helpers.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/_base.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/gitea.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/github.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/gitlab.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/token_auth.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/util.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/version/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/version/algorithm.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/version/declaration.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/version/translator.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/version/version.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/setup.cfg +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/setup.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/test_generate_config.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/test_help.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/test_main.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/test_publish.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/fixtures/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/fixtures/commit_parsers.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/fixtures/example_project.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/fixtures/git_repo.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/fixtures/scipy.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/scenario/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/scenario/test_next_version.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/scenario/test_release_history.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/scenario/test_template_render.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/changelog/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/changelog/test_changelog_context.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/changelog/test_default_changelog.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/changelog/test_release_notes.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/changelog/test_template.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/cli/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/cli/test_config.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/cli/test_github_actions_output.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/cli/test_masking_filter.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/cli/test_version.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/commit_parser/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/commit_parser/helper.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/commit_parser/test_angular.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/commit_parser/test_emoji.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/commit_parser/test_scipy.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/commit_parser/test_tag.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/commit_parser/test_token.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/commit_parser/test_util.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/hvcs/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/hvcs/test__base.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/hvcs/test_gitea.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/hvcs/test_github.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/hvcs/test_gitlab.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/hvcs/test_token_auth.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/hvcs/test_util.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/version/__init__.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/version/test_algorithm.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/version/test_declaration.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/version/test_translator.py +0 -0
- {python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/unit/semantic_release/version/test_version.py +0 -0
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "python-semantic-release"
|
|
9
|
-
version = "8.0.0-
|
|
9
|
+
version = "8.0.0-rc.1"
|
|
10
10
|
description = "Automatic Semantic Versioning for Python projects"
|
|
11
11
|
requires-python = ">=3.7"
|
|
12
12
|
license = { text = "MIT" }
|
|
@@ -192,7 +192,7 @@ prerelease_token = "rc"
|
|
|
192
192
|
[tool.semantic_release.branches."8.0.x"]
|
|
193
193
|
match = "8.0.x"
|
|
194
194
|
prerelease = true
|
|
195
|
-
prerelease_token = "
|
|
195
|
+
prerelease_token = "rc"
|
|
196
196
|
|
|
197
197
|
[tool.semantic_release.remote]
|
|
198
198
|
name = "origin"
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/config.py
RENAMED
|
@@ -126,7 +126,7 @@ class PublishConfig(BaseModel):
|
|
|
126
126
|
|
|
127
127
|
|
|
128
128
|
class RawConfig(BaseModel):
|
|
129
|
-
assets:
|
|
129
|
+
assets: List[str] = []
|
|
130
130
|
branches: Dict[str, BranchConfig] = {"main": BranchConfig()}
|
|
131
131
|
build_command: Optional[str] = None
|
|
132
132
|
changelog: ChangelogConfig = ChangelogConfig()
|
|
@@ -217,7 +217,7 @@ class RuntimeContext:
|
|
|
217
217
|
version_translator: VersionTranslator
|
|
218
218
|
major_on_zero: bool
|
|
219
219
|
prerelease: bool
|
|
220
|
-
assets:
|
|
220
|
+
assets: List[str]
|
|
221
221
|
commit_author: Actor
|
|
222
222
|
commit_message: str
|
|
223
223
|
changelog_excluded_commit_patterns: Tuple[re.Pattern[str], ...]
|
|
@@ -112,7 +112,7 @@ def test_changelog_release_tag_not_in_history(
|
|
|
112
112
|
|
|
113
113
|
result = cli_runner.invoke(main, [changelog.name, *args])
|
|
114
114
|
assert result.exit_code == 2
|
|
115
|
-
assert "not in release history" in result.
|
|
115
|
+
assert "not in release history" in result.stderr.lower()
|
|
116
116
|
|
|
117
117
|
|
|
118
118
|
@pytest.mark.usefixtures("repo_with_single_branch_and_prereleases_angular_commits")
|
|
@@ -217,7 +217,7 @@ def test_version_print(
|
|
|
217
217
|
assert result.exit_code == 0
|
|
218
218
|
assert tags_before == tags_after
|
|
219
219
|
assert head_before == head_after
|
|
220
|
-
assert result.
|
|
220
|
+
assert result.stdout.rstrip("\n") == expected_stdout
|
|
221
221
|
dcmp = filecmp.dircmp(str(example_project.resolve()), tempdir)
|
|
222
222
|
differing_files = flatten_dircmp(dcmp)
|
|
223
223
|
assert not differing_files
|
|
@@ -241,7 +241,7 @@ def test_version_already_released_no_push(repo, cli_runner):
|
|
|
241
241
|
# to indicate that no release will be made
|
|
242
242
|
result = cli_runner.invoke(main, ["--strict", version.name, "--no-push"])
|
|
243
243
|
assert result.exit_code == 2
|
|
244
|
-
assert "no release will be made" in result.
|
|
244
|
+
assert "no release will be made" in result.stderr.lower()
|
|
245
245
|
|
|
246
246
|
|
|
247
247
|
@pytest.mark.parametrize(
|
|
@@ -455,7 +455,7 @@ def test_version_build_metadata_triggers_new_version(repo, cli_runner):
|
|
|
455
455
|
main, ["--strict", version.name, "--no-push"]
|
|
456
456
|
)
|
|
457
457
|
assert no_metadata_result.exit_code == 2
|
|
458
|
-
assert "no release will be made" in no_metadata_result.
|
|
458
|
+
assert "no release will be made" in no_metadata_result.stderr.lower()
|
|
459
459
|
|
|
460
460
|
metadata_suffix = "build.abc-12345"
|
|
461
461
|
result = cli_runner.invoke(
|
|
@@ -465,6 +465,15 @@ def test_version_build_metadata_triggers_new_version(repo, cli_runner):
|
|
|
465
465
|
assert repo.git.tag(l=f"*{metadata_suffix}")
|
|
466
466
|
|
|
467
467
|
|
|
468
|
+
def test_version_prints_current_version_if_no_new_version(
|
|
469
|
+
repo_with_git_flow_angular_commits, cli_runner
|
|
470
|
+
):
|
|
471
|
+
result = cli_runner.invoke(main, [version.name, "--no-push"])
|
|
472
|
+
assert result.exit_code == 0
|
|
473
|
+
assert "no release will be made" in result.stderr.lower()
|
|
474
|
+
assert result.stdout == "1.2.0-alpha.2\n"
|
|
475
|
+
|
|
476
|
+
|
|
468
477
|
@pytest.mark.parametrize("shell", ("/usr/bin/bash", "/usr/bin/zsh", "powershell"))
|
|
469
478
|
def test_version_runs_build_command(
|
|
470
479
|
repo_with_git_flow_angular_commits, cli_runner, example_pyproject_toml, shell
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/__main__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/common.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/const.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/cli/util.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/const.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/enums.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/errors.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/helpers.py
RENAMED
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/_base.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/gitea.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/github.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/gitlab.py
RENAMED
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/semantic_release/hvcs/util.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/test_help.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/command_line/test_main.py
RENAMED
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/fixtures/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/fixtures/git_repo.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/fixtures/scipy.py
RENAMED
|
File without changes
|
{python-semantic-release-8.0.0a7 → python-semantic-release-8.0.0rc1}/tests/scenario/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|