Skip to content

Commit

Permalink
chore: Enforce only major versions for Python projects (#306)
Browse files Browse the repository at this point in the history
- Closes #305
  • Loading branch information
vdusek authored Dec 16, 2024
1 parent 95e9bc3 commit 9151376
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion templates/python-beautifulsoup/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify ~= 2.1.0
apify < 3.0
beautifulsoup4[lxml]
httpx
types-beautifulsoup4
2 changes: 1 addition & 1 deletion templates/python-crawlee-beautifulsoup/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify ~= 2.1.0
apify < 3.0
crawlee[beautifulsoup]
2 changes: 1 addition & 1 deletion templates/python-crawlee-playwright/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify ~= 2.1.0
apify < 3.0
crawlee[playwright]
2 changes: 1 addition & 1 deletion templates/python-empty/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify ~= 2.1.0
apify < 3.0
2 changes: 1 addition & 1 deletion templates/python-playwright/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify ~= 2.1.0
apify < 3.0
playwright
2 changes: 1 addition & 1 deletion templates/python-scrapy/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify[scrapy] ~= 2.1.0
apify[scrapy] < 3.0
nest-asyncio
scrapy
2 changes: 1 addition & 1 deletion templates/python-selenium/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify ~= 2.1.0
apify < 3.0
selenium
2 changes: 1 addition & 1 deletion templates/python-standby/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify ~= 2.1.0
apify < 3.0
2 changes: 1 addition & 1 deletion templates/python-start/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Feel free to add your Python dependencies below. For formatting guidelines, see:
# https://pip.pypa.io/en/latest/reference/requirements-file-format/

apify ~= 2.1.0
apify < 3.0
beautifulsoup4[lxml]
httpx
types-beautifulsoup4
2 changes: 1 addition & 1 deletion wrappers/python-scrapy/requirements_apify.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Add your dependencies here.
# See https://pip.pypa.io/en/latest/reference/requirements-file-format/
# for how to format them
apify[scrapy] ~= 2.1.0
apify[scrapy] < 3.0
nest-asyncio
scrapy

0 comments on commit 9151376

Please sign in to comment.