Skip to content

Commit

Permalink
Updated compatibility info, dropping 3.7 and adding 3.12 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
elleryalvarez authored Oct 11, 2023
1 parent a0db824 commit df57c95
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.7
- 3.8
- 3.9
- '3.10'
- '3.11'
- '3.12'
- pypy3.9

services:
Expand All @@ -37,11 +37,12 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install dependencies
run: |
Expand Down
1 change: 0 additions & 1 deletion ming/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import cgi
from threading import local
import warnings
import pymongo
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: 3.12',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
python_requires='>=3.7',
python_requires='>=3.8',
keywords='mongo, pymongo',
author='Rick Copeland',
author_email='rick@geek.net',
Expand All @@ -38,6 +38,7 @@
"pytz",
],
tests_require=[
"setuptools"
"pytz",
"WebOb",
"webtest",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[tox]
skip_missing_interpreters = True
envlist =
py{37,38,39,310,311},pypy3
py{38,39,310,311,312},pypy3

[testenv]
deps =
setuptools
pytz
WebOb
webtest
Expand Down

0 comments on commit df57c95

Please sign in to comment.