Skip to content

Commit

Permalink
Remove python 3.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
rkhwaja committed Nov 23, 2023
1 parent 24f18ea commit 26a372a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12.0"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12.0"]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -23,15 +22,12 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=3.7,<4"
python = ">=3.8,<4"
# Need 2.0.5 for opendir factory parameter
# Need 2.0.6 because in 2.0.5, opener didn't work
# Need 2.4.13 for preserve_time flag
fs = ">=2.4.13,<3"
requests = ">=2.20"
urllib3 = [
{ version = ">=1.26", python = ">=3.10,<4" }
]
requests-oauthlib = ">=1.2.0"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit 26a372a

Please sign in to comment.