Skip to content

Commit

Permalink
Excluded airflow, pandas, and detectron2 from python 3.12 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SiddhantSadangi committed Mar 13, 2024
1 parent e9a8704 commit f96bcb7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ jobs:
- integrations-and-supported-tools/kedro/scripts
- integrations-and-supported-tools/mosaicml-composer/scripts
python-version: "3.8"
- dir:
- integrations-and-supported-tools/airflow/scripts
- integrations-and-supported-tools/pandas/scripts
- integrations-and-supported-tools/detectron2/scripts
python-version: "3.12"
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ jobs:
os: windows-latest
- notebooks: integrations-and-supported-tools/mosaicml-composer/notebooks/Neptune_MosaicML_Composer.ipynb
python-version: "3.8"
- notebooks:
- integrations-and-supported-tools/pandas/notebooks/Neptune_Pandas.ipynb
- integrations-and-supported-tools/detectron2/notebooks/Neptune_Detectron2.ipynb
python-version: "3.12"
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ jobs:
- integrations-and-supported-tools/kedro/scripts
- integrations-and-supported-tools/mosaicml-composer/scripts
python-version: "3.8"
- scripts:
- integrations-and-supported-tools/airflow/scripts
- integrations-and-supported-tools/detectron2/scripts
- integrations-and-supported-tools/pandas/scripts
python-version: "3.12"
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ set -e
echo "Installing requirements..."
pip install -U -r requirements.txt

echo "Installing detectron2..."
if [[ "$OSTYPE" == "darwin"* ]]; then
CC=clang CXX=clang++ ARCHFLAGS="-arch x86_64" python -m pip install -U 'git+https://github.com/facebookresearch/detectron2.git' --no-build-isolation
else
Expand Down

0 comments on commit f96bcb7

Please sign in to comment.