forked from Backblaze/B2_Command_Line_Tool
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
104a0e6
commit 8192dfc
Showing
8 changed files
with
516 additions
and
386 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Remove Python 3.7 support in new releases. | ||
Under Python 3.7 `pip` will keep resolving the latest version of the package that supports active interpreter. | ||
This change comes at benefit of using newer versions of B2 CLI dependencies in `b2` standalone binary as well as in the official docker image. | ||
Python 3.8 is now the minimum supported version, until it reaches EOL in October 2024. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,6 @@ | |
PYTHON_VERSIONS = [ | ||
'pypy3.9', | ||
'pypy3.10', | ||
'3.7', | ||
'3.8', | ||
'3.9', | ||
'3.10', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = [ | |
{ name = "Backblaze Inc", email = "[email protected]" }, | ||
] | ||
dynamic = ["version"] | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
keywords = ["backblaze b2 cloud storage"] | ||
license = {text = "MIT"} | ||
readme = "README.md" | ||
|
@@ -15,7 +15,6 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
|
@@ -110,7 +109,6 @@ dependencies = true | |
optional_dependencies = ["doc", "full", "license"] | ||
|
||
[tool.ruff] | ||
target-version = "py37" # to be replaced by project:requires-python when we will have that section in here | ||
|
||
# TODO add D | ||
select = ["E", "F", "I", "UP"] | ||
|