Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/python_dependency_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install libsnappy-dev
run: sudo apt-get update && sudo apt-get install -y libsnappy-dev
- name: Install python
uses: actions/setup-python@v5
with:
Expand Down
3 changes: 2 additions & 1 deletion sdks/python/container/base_image_requirements_manual.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ guppy3
mmh3 # Optimizes execution of some Beam codepaths. TODO: Make it Beam's dependency.
nltk # Commonly used for natural language processing.
nose==1.3.7 # For Dataflow internal testing. TODO: remove this.
python-snappy # Optimizes execution of some Beam codepaths.
# https://github.com/apache/beam/issues/34226
python-snappy==0.6.1 # Optimizes execution of some Beam codepaths.
scipy
scikit-learn
build>=1.0,<2 # tool to build sdist from setup.py in stager.
2 changes: 1 addition & 1 deletion sdks/python/container/py310/base_image_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ pytest==7.4.4
pytest-timeout==2.3.1
pytest-xdist==3.6.1
python-dateutil==2.9.0.post0
python-snappy==0.7.3
python-snappy==0.6.1
pytz==2025.1
PyYAML==6.0.2
redis==5.2.1
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/container/py311/base_image_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ pytest==7.4.4
pytest-timeout==2.3.1
pytest-xdist==3.6.1
python-dateutil==2.9.0.post0
python-snappy==0.7.3
python-snappy==0.6.1
pytz==2025.1
PyYAML==6.0.2
redis==5.2.1
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/container/py312/base_image_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pytest==7.4.4
pytest-timeout==2.3.1
pytest-xdist==3.6.1
python-dateutil==2.9.0.post0
python-snappy==0.7.3
python-snappy==0.6.1
pytz==2025.1
PyYAML==6.0.2
redis==5.2.1
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/container/py39/base_image_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ pytest==7.4.4
pytest-timeout==2.3.1
pytest-xdist==3.6.1
python-dateutil==2.9.0.post0
python-snappy==0.7.3
python-snappy==0.6.1
pytz==2025.1
PyYAML==6.0.2
redis==5.2.1
Expand Down
Loading