Skip to content

Commit d92de7c

Browse files
committed
Remove support python 3.9
1 parent 46bd726 commit d92de7c

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
23+
python-version: ['3.10', '3.11', '3.12', '3.13']
2424
steps:
2525
- uses: actions/checkout@v4
2626
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
packages=find_packages(),
2424
include_package_data=True,
2525
package_data=dict(mongoengine_plus=['py.typed']),
26-
python_requires='>=3.9',
26+
python_requires='>=3.10',
2727
install_requires=[
2828
'mongoengine>=0.29.1',
2929
'dnspython>=2.7.0',
@@ -33,7 +33,6 @@
3333
'blinker>=1.9.0,<2.0.0',
3434
],
3535
classifiers=[
36-
'Programming Language :: Python :: 3.9',
3736
'Programming Language :: Python :: 3.10',
3837
'Programming Language :: Python :: 3.11',
3938
'Programming Language :: Python :: 3.12',

0 commit comments

Comments
 (0)