Skip to content

Commit

Permalink
chore(deps)!: Deprecate python 3.7 (#14)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Python 3.7 will no longer be supported since it reached EOL
  • Loading branch information
jochman authored Sep 13, 2023
1 parent 9c234d1 commit d01bb52
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, 3.10, 3.11]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
14 changes: 5 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,9 @@
version=version,
packages=["pydantic_mongo"],
setup_requires=["wheel"],
install_requires=[
"pymongo>=4.3,<5.0",
"pydantic>=1.6.2,<2.0.0"
],
install_requires=["pymongo>=4.3,<5.0", "pydantic>=1.6.2,<2.0.0"],
entry_points={
"console_scripts": [
"pydantic_mongo = pydantic_mongo.__main__:__main__"
],
"console_scripts": ["pydantic_mongo = pydantic_mongo.__main__:__main__"],
},
description="Document object mapper for pydantic and pymongo",
long_description=long_description,
Expand All @@ -33,9 +28,10 @@
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
],
python_requires=">=3.7"
python_requires=">=3.8",
)

0 comments on commit d01bb52

Please sign in to comment.