-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to RBTools 4.0 dev and change Python compatibility.
This is the start of the work on RBTools 4.0. It drops support for Python < 3.7 and adds official support for Python 3.10/3.11. 4.0 will largely focus on modern compatibility, internal architectural improvements, and support for Apple Diff. As part of the package modernization effort, our `rbtools/__init__.py` has been updated to use our modern logic (first established in `beanbag-tools`) for version building. Testing Done: Successfully built packages. Tested that our version gatekeeping logic in `setup.py` did the right thing for Python 2.7, 3.6, 3.7, 3.8, 3.9, 3.10, and 3.11. Reviewed at https://reviews.reviewboard.org/r/12522/
- Loading branch information
Showing
4 changed files
with
80 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
kgb>=6.1 | ||
mock | ||
kgb~=7.1.1 | ||
mercurial | ||
pytest | ||
pytest-env | ||
|
||
# Ordering here matters. | ||
mercurial>=4.4.2,<6.2; python_version == '2.7' | ||
mercurial>=5.2; python_version >= '3.6' | ||
hgsubversion; python_version <= '2.7' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters