Skip to content

Commit

Permalink
Update Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dvadym committed Jul 21, 2023
1 parent c9ce2a2 commit 381efa0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.7]
python-version: [3.8]
runs-on: ${{ matrix.os }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
max-parallel: 3
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ on Apache Beam:

`pip install pipeline-dp apache-beam`.

Supported Python version >= 3.7.
Supported Python version >= 3.8.

**Note for Apple Silicon users:** PipelineDP pip package is currently available only
for x86 architecture. The reason is that [PyDP](https://github.com/OpenMined/PyDP) does not
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.7, < 3.11"
python = "^3.8, < 3.11"
python-dp = "^1.1.3rc4"
numpy = "^1.20.1"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def read(fname):
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'python_requires': '>=3.7,<3.11',
'python_requires': '>=3.8,<3.11',
'long_description': read("README.md"),
'long_description_content_type': 'text/markdown',
'license': "Apache-2.0",
Expand Down

0 comments on commit 381efa0

Please sign in to comment.