Skip to content

Commit

Permalink
drop python 3.6 support, fixes #54
Browse files Browse the repository at this point in the history
  • Loading branch information
brondsem committed Feb 6, 2023
1 parent 1641ed9 commit 637a033
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- '3.10'
- '3.11-dev'
- '3.11'
- pypy3.9

services:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,13 @@
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
python_requires='>=3.6',
python_requires='>=3.7',
keywords='mongo, pymongo',
author='Rick Copeland',
author_email='rick@geek.net',
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{36,37,38,39,310,311},pypy3
py{37,38,39,310,311},pypy3

[testenv]
deps =
Expand Down

0 comments on commit 637a033

Please sign in to comment.