Skip to content

Commit

Permalink
feat: add support for Python 3.13 (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG authored Jul 30, 2024
1 parent 1210521 commit 7089691
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ jobs:
- name: CPython 3.11
runs-on: "3.11"
- name: CPython 3.12
runs-on: "3.12-dev"
runs-on: "3.12"
- name: CPython 3.13
runs-on: "3.13-dev"
- name: PyPy 3.9
runs-on: "pypy-3.9"
steps:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
See Git checking messages for full history.

## 9.0.2 (2023/xx/xx)
- added support for Python 3.13
- leveled up the packaging using `hatchling`
- used `ruff` to lint the code base (#275)
- MSS: minor optimization when using an output file format without date (#275)
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture",
"Topic :: Software Development :: Libraries",
]
Expand Down Expand Up @@ -70,7 +71,7 @@ mss = "mss.__main__:main"

[project.optional-dependencies]
test = [
"numpy",
"numpy ; sys_platform == 'windows' and python_version >= '3.13'",
"pillow",
"pytest",
"pytest-cov",
Expand Down

0 comments on commit 7089691

Please sign in to comment.