Skip to content

Commit

Permalink
Downgrade setuptools as per numpy recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
palfrey committed Feb 27, 2024
1 parent 90ecc76 commit eb88140
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs: # jobs. We will have two jobs (test and publish) with multiple steps.
poetry-version: latest
- name: Install dependencies # install all dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install --upgrade pip
poetry config virtualenvs.create false --local
poetry install --all-extras
pip install pytest pylint coverage mypy coveralls
Expand Down
17 changes: 8 additions & 9 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ requests = ">=2.26.0"
feedparser = ">=6.0.0"
tldextract = ">=2.0.1"
python-dateutil = ">=2.6.1"
setuptools = "<60" # As per numpy recommendations at https://numpy.org/doc/stable/reference/distutils_status_migration.html#numpy-setuptools-interaction

# Language specific dependencies
tinysegmenter = {version = ">=0.4", optional = true}
Expand Down

0 comments on commit eb88140

Please sign in to comment.