Skip to content

Commit d75e27d

Browse files
authored
chore: update project links & repository references (#467)
### Description - Update links in `pyproject.toml`. - Update links to repository (to `crawlee-python`). ### Issues - Closes: N/A ### Testing - N/A ### Checklist - [ ] CI passed
1 parent 8dd28fc commit d75e27d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/run_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,4 @@ jobs:
151151
version_number: ${{ needs.should_release.outputs.version_number }}
152152

153153
# TODO: add job for publish package to Conda
154-
# https://github.com/apify/crawlee-py/issues/104
154+
# https://github.com/apify/crawlee-python/issues/104

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "Apache-2.0"
1111
readme = "README.md"
1212
packages = [{ include = "crawlee", from = "src" }]
1313
classifiers = [
14-
"Development Status :: 3 - Alpha",
14+
"Development Status :: 4 - Beta",
1515
"Intended Audience :: Developers",
1616
"License :: OSI Approved :: Apache Software License",
1717
"Operating System :: OS Independent",
@@ -35,10 +35,10 @@ keywords = [
3535
[tool.poetry.urls]
3636
"Homepage" = "https://crawlee.dev/python"
3737
"Apify Homepage" = "https://apify.com"
38-
"Changelog" = "https://github.com/apify/crawlee-py/blob/master/CHANGELOG.md"
38+
"Changelog" = "https://crawlee.dev/python/docs/changelog"
3939
"Documentation" = "https://crawlee.dev/python/docs/quick-start"
40-
"Issue Tracker" = "https://github.com/apify/crawlee-py/issues"
41-
"Repository" = "https://github.com/apify/crawlee-py"
40+
"Issue Tracker" = "https://github.com/apify/crawlee-python/issues"
41+
"Repository" = "https://github.com/apify/crawlee-python"
4242

4343
# We use inclusive ordered comparison clauses for external packages intentionally in order to enhance Crawlee's
4444
# compatibility with external packages. This decision was discussed in detail in the following PR:

src/crawlee/_autoscaling/snapshotter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def _snapshot_client(self) -> None:
267267
"""
268268
# TODO: This is just a dummy placeholder. It can be implemented once `StorageClient` is ready.
269269
# Attribute `self._client_rate_limit_error_retry_count` will be used here.
270-
# https://github.com/apify/crawlee-py/issues/60
270+
# https://github.com/apify/crawlee-python/issues/60
271271

272272
error_count = 0
273273
snapshot = ClientSnapshot(error_count=error_count, max_error_count=self._max_client_errors)

src/crawlee/_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ class Request(BaseRequestData):
102102
id: str
103103

104104
json_: str | None = None # TODO: get rid of this
105-
# https://github.com/apify/crawlee-py/issues/94
105+
# https://github.com/apify/crawlee-python/issues/94
106106

107107
order_no: Decimal | None = None # TODO: get rid of this
108-
# https://github.com/apify/crawlee-py/issues/94
108+
# https://github.com/apify/crawlee-python/issues/94
109109

110110
@classmethod
111111
def from_url(

tests/unit/_memory_storage_client/test_memory_storage_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TODO: type ignores and crawlee_storage_dir
2-
# https://github.com/apify/crawlee-py/issues/146
2+
# https://github.com/apify/crawlee-python/issues/146
33

44
from __future__ import annotations
55

tests/unit/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TODO: type ignores and crawlee_storage_dir
2-
# https://github.com/apify/crawlee-py/issues/146
2+
# https://github.com/apify/crawlee-python/issues/146
33

44
from __future__ import annotations
55

0 commit comments

Comments
 (0)