github2gerrit 0.1.0__tar.gz → 0.1.2__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.
Files changed (26) hide show
  1. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/PKG-INFO +5 -4
  2. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/pyproject.toml +5 -4
  3. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/LICENSE +0 -0
  4. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/README.md +0 -0
  5. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/conftest.py +0 -0
  6. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/fixtures/__init__.py +0 -0
  7. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/fixtures/make_repo.py +0 -0
  8. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_cli.py +0 -0
  9. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_cli_helpers.py +0 -0
  10. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_cli_outputs_file.py +0 -0
  11. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_cli_url_and_dryrun.py +0 -0
  12. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_config_and_reviewers.py +0 -0
  13. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_config_helpers.py +0 -0
  14. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_core_close_pr_policy.py +0 -0
  15. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_core_config_and_errors.py +0 -0
  16. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_core_gerrit_backref_comment.py +0 -0
  17. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_core_gerrit_rest_results.py +0 -0
  18. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_core_integration_fixture_repo.py +0 -0
  19. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_core_prepare_commits.py +0 -0
  20. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_core_ssh_setup.py +0 -0
  21. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_duplicate_detection.py +0 -0
  22. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_ghe_and_gitreview_args.py +0 -0
  23. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_github_api_helpers.py +0 -0
  24. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_github_api_retry_and_helpers.py +0 -0
  25. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_gitutils_helpers.py +0 -0
  26. {github2gerrit-0.1.0 → github2gerrit-0.1.2}/tests/test_url_parser.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: github2gerrit
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: Submit a GitHub pull request to a Gerrit repository.
5
5
  Keywords: github,gerrit,ci,actions,typer,cli
6
6
  Author-Email: Matthew Watkins <mwatkins@linuxfoundation.org>
@@ -12,13 +12,14 @@ Classifier: License :: OSI Approved :: Apache Software License
12
12
  Classifier: Programming Language :: Python :: 3
13
13
  Classifier: Programming Language :: Python :: 3 :: Only
14
14
  Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
15
16
  Classifier: Programming Language :: Python :: 3.13
16
17
  Classifier: Topic :: Software Development :: Build Tools
17
18
  Classifier: Topic :: Software Development :: Version Control
18
19
  Classifier: Typing :: Typed
19
- Project-URL: Homepage, https://github.com/lfit/github2gerrit
20
- Project-URL: Repository, https://github.com/lfit/github2gerrit
21
- Project-URL: Issues, https://github.com/lfit/github2gerrit/issues
20
+ Project-URL: Homepage, https://github.com//lfreleng-actions/github2gerrit
21
+ Project-URL: Repository, https://github.com//lfreleng-actions/github2gerrit
22
+ Project-URL: Issues, https://github.com//lfreleng-actions/github2gerrit/issues
22
23
  Requires-Python: <3.14,>=3.11
23
24
  Requires-Dist: typer>=0.12.5
24
25
  Requires-Dist: PyGithub>=2.3.0
@@ -23,6 +23,7 @@ classifiers = [
23
23
  "Programming Language :: Python :: 3",
24
24
  "Programming Language :: Python :: 3 :: Only",
25
25
  "Programming Language :: Python :: 3.11",
26
+ "Programming Language :: Python :: 3.12",
26
27
  "Programming Language :: Python :: 3.13",
27
28
  "Topic :: Software Development :: Build Tools",
28
29
  "Topic :: Software Development :: Version Control",
@@ -34,15 +35,15 @@ dependencies = [
34
35
  "pygerrit2>=2.0.0",
35
36
  "git-review>=2.3.1",
36
37
  ]
37
- version = "0.1.0"
38
+ version = "0.1.2"
38
39
 
39
40
  [project.license]
40
41
  text = "Apache-2.0"
41
42
 
42
43
  [project.urls]
43
- Homepage = "https://github.com/lfit/github2gerrit"
44
- Repository = "https://github.com/lfit/github2gerrit"
45
- Issues = "https://github.com/lfit/github2gerrit/issues"
44
+ Homepage = "https://github.com//lfreleng-actions/github2gerrit"
45
+ Repository = "https://github.com//lfreleng-actions/github2gerrit"
46
+ Issues = "https://github.com//lfreleng-actions/github2gerrit/issues"
46
47
 
47
48
  [project.scripts]
48
49
  github2gerrit = "github2gerrit.cli:app"
File without changes
File without changes