Skip to content

Commit

Permalink
bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
cscorley committed Nov 16, 2024
1 parent 5a6c87b commit 067e6dc
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Nothing yet :)

# 1.0.7

- PR #62 fix: incorrect regular expression matching diffcmd (Thanks, @jingfelix)
- Support up to 3.13
- Drop support up to 3.8

# 1.0.6

- PR #60 Improve huge_patch test (Thanks, @arkamar)
Expand Down
38 changes: 19 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
[project]
name = "whatthepatch"
version = "1.0.6"
version = "1.0.7"
maintainers = [{ name = "Christopher S. Corley", email = "[email protected]" }]
requires-python = ">=3.8"
requires-python = ">=3.9"
readme = "README.rst"
description = "A patch parsing and application library."
keywords = ["patch", "diff", "parser"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development",
"Topic :: Text Processing",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Version Control",
"Topic :: Software Development",
"Topic :: Text Processing",
]

[project.urls]
Expand Down
4 changes: 2 additions & 2 deletions release.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ lib, python3Packages, setuptools }:
with python3Packages;
buildPythonPackage rec {
buildPythonPackage {
pname = "whatthepatch";
version = "1.0.6";
version = "1.0.7";
format = "pyproject";
src = ./.;

Expand Down
2 changes: 1 addition & 1 deletion tests/test_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -1531,7 +1531,6 @@ def test_linux_29e1dfc(self):
self.assertEqual(len(results), 1)
self.assertEqual(results[0].header, expected)


def test_eclipse_cvsdiff(self):
# From https://bugzillaattachments.eclipsecontent.org/bugs/attachment.cgi?id=1701
with open("tests/casefiles/eclipse-attachment-1701.patch") as f:
Expand All @@ -1552,5 +1551,6 @@ def test_eclipse_cvsdiff(self):
self.assertEqual(results[0].header, expected)
self.assertEqual(len(results[0].changes), 20)


if __name__ == "__main__":
unittest.main()

0 comments on commit 067e6dc

Please sign in to comment.