Skip to content

Commit

Permalink
drop python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
brondsem committed Oct 10, 2024
1 parent c5b0178 commit 8298ae8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- '3.10'
- '3.11'
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,12 @@
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
'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',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
python_requires='>=3.8',
python_requires='>=3.9',
keywords='mongo, pymongo',
author='Rick Copeland',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
skip_missing_interpreters = True
envlist =
py{38,39,310,311,312}-pymongo{3,4},pypy3-pymongo{3,4}
py{39,310,311,312}-pymongo{3,4},pypy3-pymongo{3,4}

[testenv]
install_command = pip install {opts} {packages}
Expand Down

0 comments on commit 8298ae8

Please sign in to comment.