Skip to content

Commit

Permalink
Merge pull request #219 from Rotzbua/fix_dep_py37
Browse files Browse the repository at this point in the history
fix: remove python 3.7
  • Loading branch information
lopuhin authored Apr 17, 2024
2 parents 7fc70f1 + d484a7b commit 9ccde67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
# pip install -r requirements.txt
lxml[html_clean]
requests
rdflib>=6.0.0; python_version>="3.7"
rdflib<6.0.0; python_version<"3.7"
rdflib-jsonld<=0.5.0; python_version<"3.7"
rdflib>=6.0.0
pyrdfa3
mf2py>=1.1.0
six>=1.11
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,10 @@ def get_version():
]
),
package_data={"extruct": ["VERSION"]},
python_requires=">=3.8",
install_requires=[
"lxml",
'rdflib<6.0.0;python_version<"3.7"',
'rdflib-jsonld<=0.5.0;python_version<"3.7"',
# rdflib 6.x.y (only on 3.7 and up) contains jsonld
'rdflib>=6.0.0;python_version>="3.7"',
"rdflib>=6.0.0",
"pyrdfa3",
"mf2py",
"w3lib",
Expand Down

0 comments on commit 9ccde67

Please sign in to comment.