Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.

Commit 68f2fa7

Browse files
committed
drop support for python 3.7
1 parent f4a4e2f commit 68f2fa7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/publish.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
build:
17-
- cp37-win_amd64
18-
- cp37-win32
1917
- cp38-win_amd64
2018
- cp38-win32
2119
- cp39-win_amd64

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
- Updated CppWinRT to v2.0.230706.1.
1212
- Updated PyWinRT to [v1.0.0-beta.10](https://github.com/pywinrt/pywinrt/releases/tag/v1.0.0-beta.10).
1313

14+
### Removed
15+
- Dropped support for Python 3.7.
16+
1417
## [v1.0.0b9] - 2023-04-15
1518

1619
### Added

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
## Prerequisites
33

4-
- [Python](https://www.python.org/downloads/) >= 3.7
4+
- [Python](https://www.python.org/downloads/) >= 3.8
55
- [Nuget](https://www.nuget.org/downloads)
66

77
## Get the code

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@
1919
'Environment :: Win32 (MS Windows)',
2020
'License :: OSI Approved :: MIT License',
2121
'Operating System :: Microsoft :: Windows :: Windows 10',
22-
'Programming Language :: Python :: 3.7',
2322
'Programming Language :: Python :: 3.8',
2423
'Programming Language :: Python :: 3.9',
2524
'Programming Language :: Python :: 3.10',
2625
'Programming Language :: Python :: 3.11',
2726
'Programming Language :: Python :: Implementation :: CPython',
2827
'Topic :: System :: Operating System',
2928
],
30-
python_requires=">=3.7",
29+
python_requires=">=3.8",
3130
packages=find_namespace_packages(where=("pywinrt")),
3231
package_dir={"": "pywinrt"},
3332
# recursive glob (**) doesn't seem to work here

0 commit comments

Comments
 (0)