disperse.conf 542 B

12345678910111213141516171819
  1. # See https://github.com/jelmer/disperse
  2. news_file: "NEWS"
  3. timeout_days: 5
  4. tag_name: "dulwich-$VERSION"
  5. verify_command: "make check"
  6. update_version {
  7. path: "dulwich/__init__.py"
  8. match: "^__version__ = \((.*)\)$"
  9. new_line: "__version__ = $TUPLED_VERSION"
  10. }
  11. update_version {
  12. path: "Cargo.toml"
  13. match: "^version = \"(.*)\"$"
  14. new_line: "version = \"$VERSION\""
  15. }
  16. # Dulwich' CI builds wheels, which is really slow
  17. ci_timeout: 7200
  18. # We have a GitHub action that uploads to PyPI, so we don't need to do it here.
  19. skip_twine_upload: true