Skip to content

Commit

Permalink
Removed python 2 support as per issue davidlatwe#38
Browse files Browse the repository at this point in the history
  • Loading branch information
madeinoz67 committed Dec 3, 2021
1 parent 9566c8a commit a5569d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 2.7, 3.6, 3.7, 3.8, 3.9 ]
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
mongodb-version: [ "3.6", "4.0", "4.2" ]
monty-storage: [ memory, flatfile, sqlite ]
experimental: [ false ]
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -26,7 +25,7 @@ include=[
]

[tool.poetry.dependencies]
python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, ^3.9"
python = ">=3.6, ^3.9"

[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
Expand Down

0 comments on commit a5569d2

Please sign in to comment.