Skip to content

Commit

Permalink
bump python to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mkozakov committed Dec 5, 2024
1 parent 735ff9c commit 8a881cd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Bootstrap poetry
uses: snok/install-poetry@v1
with:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Bootstrap poetry
uses: snok/install-poetry@v1
with:
Expand Down Expand Up @@ -64,17 +64,17 @@ jobs:
echo "Cloning langchain-cohere..."
git clone https://github.com/langchain-ai/langchain-cohere.git && cd langchain-cohere/libs/cohere
echo "Cloned langchain-cohere, current dir $(pwd)"
echo "poetry install --with test,test_integration"
poetry install --with test,test_integration
poetry install --with test,test_integration
echo "Going to uninstall cohere package, and install the current version from the repo"
cd ../../../cohere-python && echo "Current dir $(pwd)"
echo "Current dir $(ls)"
pip uninstall cohere
pip install .
cd ../langchain-cohere/libs/cohere
echo "Current cohere installation: $(pip freeze | grep cohere)"
make test
make integration_test
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1
Expand Down

0 comments on commit 8a881cd

Please sign in to comment.