Skip to content

Commit

Permalink
set min version to 3.7, instead of 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dvadym committed Jan 24, 2022
1 parent b01fd49 commit a90da6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
max-parallel: 3
matrix:
os: [ubuntu-latest]
python-version: [3.8]
python-version: [3.7]
runs-on: ${{ matrix.os }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Chinmay Shah <chinmayshah3899@gmail.com>", "Vadym Doroshenko <dvadym
license = "Apache-2.0"

[tool.poetry.dependencies]
python = "^3.8, < 3.11"
python = "^3.7, < 3.11"
python-dp = "^1.1.1"
pyspark = "^3.2.0"
absl-py = "^1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def read(fname):
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'python_requires': '>=3.8,<3.11',
'python_requires': '>=3.7,<3.11',
'long_description': read("README.md"),
'long_description_content_type': 'text/markdown',
'license': "Apache-2.0",
Expand Down

0 comments on commit a90da6d

Please sign in to comment.