Skip to content

Commit

Permalink
pin pyyaml, try to fix incompatibility with cython
Browse files Browse the repository at this point in the history
  • Loading branch information
northdpole committed Jul 6, 2024
1 parent addc315 commit 4e9205a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11.4'
cache: 'pip'
python-version: '3.12.3'
- name: Install python dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3-setuptools python3-virtualenv python3-pip
pip install --upgrade pip
make install-python
sudo apt-get update
sudo apt-get install -y \
python3-setuptools \
python3-virtualenv \
python3-pip \
libxml2-dev \
libxslt-dev
pip install --upgrade pip
pip install --upgrade setuptools
make install-python
- name: Test
run: make test
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ grpcio_status
grpcio
gspread
gunicorn
lxml
networkx
nltk
oauthlib
Expand Down Expand Up @@ -80,7 +81,7 @@ python-dotenv
python-frontmatter
python-markdown-maker
python-slugify
PyYAML
PyYAML==6.0.1
regex
requests
requests-oauthlib
Expand Down

0 comments on commit 4e9205a

Please sign in to comment.