Skip to content

Commit

Permalink
- python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksei Rubashev committed Jul 23, 2024
1 parent 21e3ce5 commit 5befd40
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 27 deletions.
1 change: 0 additions & 1 deletion .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
29 changes: 13 additions & 16 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -22,7 +21,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=2.7.18,<3.0 || >=3.7,<4.0"
python = ">=2.7.18,<3.0 || >=3.8,<4.0"
pathlib = { version = "1.0.1", python = "<3.4" }
enum34 = { version = "1.1.10", python = "<3.6" }
future = { version = "1.0.0", python = "<3" }
Expand Down
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
backports-zoneinfo==0.2.1 ; python_full_version > "3.8.0" and python_version < "3.9"
colorama==0.4.6 ; python_version >= "3.7" and python_version < "4.0" or python_full_version >= "2.7.18" and python_version < "3.0.dev0"
colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0" or python_full_version >= "2.7.18" and python_version < "3.0.dev0"
colorlog==4.8.0 ; python_full_version >= "2.7.18" and python_version < "3.0"
colorlog==6.8.2 ; python_version >= "3.7" and python_version < "4.0"
colorlog==6.8.2 ; python_version >= "3.8" and python_version < "4.0"
enum34==1.1.10 ; python_full_version >= "2.7.18" and python_version < "3.0"
future==1.0.0 ; python_full_version >= "2.7.18" and python_version < "3.0.dev0"
importlib-resources==6.4.0 ; python_full_version > "3.8.0" and python_version < "3.9"
pathlib==1.0.1 ; python_full_version >= "2.7.18" and python_version < "3.0"
pendulum==2.1.2 ; python_full_version >= "2.7.18" and python_version < "3.0.dev0" or python_version >= "3.7" and python_full_version <= "3.8.0"
pendulum==2.1.2 ; python_full_version >= "2.7.18" and python_version < "3.0.dev0" or python_full_version == "3.8.0"
pendulum==3.0.0 ; python_full_version > "3.8.0" and python_version < "4.0"
python-dateutil==2.9.0.post0 ; python_version >= "3.7" and python_version < "4.0" or python_full_version >= "2.7.18" and python_version < "3.0.dev0"
pytzdata==2020.1 ; python_full_version >= "2.7.18" and python_version < "3.0.dev0" or python_version >= "3.7" and python_full_version <= "3.8.0"
six==1.16.0 ; python_version >= "3.7" and python_version < "4.0" or python_full_version >= "2.7.18" and python_version < "3.0.dev0"
python-dateutil==2.9.0.post0 ; python_full_version >= "3.8.0" and python_version < "4.0" or python_full_version >= "2.7.18" and python_version < "3.0.dev0"
pytzdata==2020.1 ; python_full_version >= "2.7.18" and python_version < "3.0.dev0" or python_full_version == "3.8.0"
six==1.16.0 ; python_full_version >= "3.8.0" and python_version < "4.0" or python_full_version >= "2.7.18" and python_version < "3.0.dev0"
typing==3.10.0.0 ; python_full_version >= "2.7.18" and python_version < "3.0.dev0"
tzdata==2024.1 ; python_full_version > "3.8.0" and python_version < "4.0"
win-unicode-console==0.4 ; platform_system == "Windows" and platform_version >= "10.0.18362" and python_full_version >= "2.7.18" and python_version < "3.0" or platform_system == "Windows" and platform_version >= "10.0.18362" and python_version >= "3.7" and python_version < "4.0"
win-unicode-console==0.5 ; platform_system == "Windows" and platform_version < "10.0.18362" and python_full_version >= "2.7.18" and python_version < "3.0" or platform_system == "Windows" and platform_version < "10.0.18362" and python_version >= "3.7" and python_version < "4.0"
win-unicode-console==0.4 ; platform_system == "Windows" and platform_version >= "10.0.18362" and python_full_version >= "2.7.18" and python_version < "3.0" or platform_system == "Windows" and platform_version >= "10.0.18362" and python_version >= "3.8" and python_version < "4.0"
win-unicode-console==0.5 ; platform_system == "Windows" and platform_version < "10.0.18362" and python_full_version >= "2.7.18" and python_version < "3.0" or platform_system == "Windows" and platform_version < "10.0.18362" and python_version >= "3.8" and python_version < "4.0"
zipp==3.19.2 ; python_full_version > "3.8.0" and python_version < "3.9"

0 comments on commit 5befd40

Please sign in to comment.