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
6 changes: 6 additions & 0 deletions .deps/noauto.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
requests==2.28.1; python_version == '3.11'
requests==2.31.0; python_version >= '3.12'
filelock==3.9.0; python_version == '3.11'
filelock==3.14.0; python_version >= '3.12'
internetarchive==3.3.0; python_version == '3.11'
internetarchive==3.7.0; python_version >= '3.12'
3 changes: 3 additions & 0 deletions .github/debci.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
langcodes==3.4.0
language_data==1.2.0
marisa_trie==1.2.0
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,11 @@ updates:
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: pip
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: pip
directory: "/.github"
schedule:
interval: "daily"
6 changes: 0 additions & 6 deletions .github/pythonchecks.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,3 @@ flake8-noqa==1.3.2
coverage==7.3.2
setuptools==68.2.2; python_version == '3.12'
build==1.2.1
requests==2.28.1; python_version == '3.11'
requests==2.31.0; python_version >= '3.12'
filelock==3.9.0; python_version == '3.11'
filelock==3.14.0; python_version >= '3.12'
internetarchive==3.3.0; python_version == '3.11'
internetarchive==3.7.0; python_version >= '3.12'
5 changes: 2 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
sudo apt-get install -y libgnutls28-dev
pip install -U pip
pip install -r .github/pythonchecks.txt
pip install -r .deps/noauto.txt
pyproject-build --wheel --outdir dist .
find dist -name "*.whl" | xargs pip3 install
- name: Run tests
Expand All @@ -43,9 +44,7 @@ jobs:
run: |
pyproject-build --wheel --outdir dist .
cd dist
pip wheel langcodes==3.4.0 --no-deps
pip wheel language_data==1.2.0 --no-deps
pip wheel marisa_trie==1.2.0 --no-deps
pip wheel -r ../.github/debci.txt --no-deps
# FIXME: https://github.com/pytries/marisa-trie/issues/106
mv marisa_trie-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl marisa_trie-1.2.0-py3-cp310-manylinux2014_x86_64.whl
- name: wheel2deb
Expand Down