Skip to content

Commit

Permalink
fix: missing dependencies (pydantic) in requirements.txt
Browse files Browse the repository at this point in the history
- chore: update 'certifi' dependency to v2024.08.30
- update pyproject.toml version

Attention:
- 'poetry export' does not include the "edu_sharing_client" dependency group by default
- to export all dependencies to requirements.txt, you need use the "--with edu_sharing_client" parameter with the poetry "export"-command (see: https://python-poetry.org/docs/cli/#export)
  • Loading branch information
Criamos committed Sep 3, 2024
1 parent a4388ea commit 8a8f047
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
20 changes: 10 additions & 10 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exclude = '''

[tool.poetry]
name = "oeh-search-etl"
version = "2023.08.01"
version = "2024.09.03"
description = "Crawls educational sites for use in WirLernenOnline.de"
authors = ["Torsten Simon <[email protected]>"]
maintainers = [
Expand All @@ -62,7 +62,7 @@ packages = [{include = "converter"}]
python = "^3.10"
wheel = "0.44.0"
black = "24.8.0"
certifi="2024.7.4"
certifi="2024.8.30"
dateparser="1.2"
extruct="0.17.0"
flake8 = "7.1.1"
Expand Down
9 changes: 6 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
annotated-types==0.7.0 ; python_version >= "3.10" and python_version < "4.0"
anyio==4.4.0 ; python_version >= "3.10" and python_version < "4.0"
asgiref==3.8.1 ; python_version >= "3.10" and python_version < "4.0"
async-lru==2.0.4 ; python_version >= "3.10" and python_version < "4.0"
Expand All @@ -6,7 +7,7 @@ automat==24.8.1 ; python_version >= "3.10" and python_version < "4.0"
babel==2.15.0 ; python_version >= "3.10" and python_version < "4.0"
beautifulsoup4==4.12.3 ; python_version >= "3.10" and python_version < "4.0"
black==24.8.0 ; python_version >= "3.10" and python_version < "4.0"
certifi==2024.7.4 ; python_version >= "3.10" and python_version < "4.0"
certifi==2024.8.30 ; python_version >= "3.10" and python_version < "4.0"
cffi==1.17.0 ; python_version >= "3.10" and python_version < "4.0" and platform_python_implementation != "PyPy"
charset-normalizer==3.3.2 ; python_version >= "3.10" and python_version < "4.0"
click==8.1.7 ; python_version >= "3.10" and python_version < "4.0"
Expand Down Expand Up @@ -43,7 +44,7 @@ jstyleson==0.0.2 ; python_version >= "3.10" and python_version < "4.0"
justext==3.0.1 ; python_version >= "3.10" and python_version < "4.0"
langcodes[data]==3.4.0 ; python_version >= "3.10" and python_version < "4.0"
language-data==1.2.0 ; python_version >= "3.10" and python_version < "4.0"
lxml-html-clean==0.2.0 ; python_version >= "3.10" and python_version < "4.0"
lxml-html-clean==0.2.2 ; python_version >= "3.10" and python_version < "4.0"
lxml==5.3.0 ; python_version >= "3.10" and python_version < "4.0"
lxml[html-clean]==5.3.0 ; python_version >= "3.10" and python_version < "4.0"
marisa-trie==1.2.0 ; python_version >= "3.10" and python_version < "4.0"
Expand All @@ -62,6 +63,8 @@ pyasn1-modules==0.4.0 ; python_version >= "3.10" and python_version < "4.0"
pyasn1==0.6.0 ; python_version >= "3.10" and python_version < "4.0"
pycodestyle==2.12.1 ; python_version >= "3.10" and python_version < "4.0"
pycparser==2.22 ; python_version >= "3.10" and python_version < "4.0" and platform_python_implementation != "PyPy"
pydantic-core==2.20.1 ; python_version >= "3.10" and python_version < "4.0"
pydantic==2.8.2 ; python_version >= "3.10" and python_version < "4.0"
pydispatcher==2.0.7 ; python_version >= "3.10" and python_version < "4.0" and platform_python_implementation == "CPython"
pyee==11.1.0 ; python_version >= "3.10" and python_version < "4.0"
pyflakes==3.2.0 ; python_version >= "3.10" and python_version < "4.0"
Expand All @@ -81,7 +84,7 @@ requests==2.32.3 ; python_version >= "3.10" and python_version < "4.0"
scrapy-splash==0.9.0 ; python_version >= "3.10" and python_version < "4.0"
scrapy==2.11.2 ; python_version >= "3.10" and python_version < "4.0"
service-identity==24.1.0 ; python_version >= "3.10" and python_version < "4.0"
setuptools==74.0.0 ; python_version >= "3.10" and python_version < "4.0"
setuptools==74.1.0 ; python_version >= "3.10" and python_version < "4.0"
six==1.16.0 ; python_version >= "3.10" and python_version < "4.0"
sniffio==1.3.1 ; python_version >= "3.10" and python_version < "4.0"
soupsieve==2.6 ; python_version >= "3.10" and python_version < "4.0"
Expand Down

0 comments on commit 8a8f047

Please sign in to comment.