Skip to content

Commit

Permalink
Release 1.0.0 (#2)
Browse files Browse the repository at this point in the history
- Initial demo.
  • Loading branch information
dmg0345 authored Jan 12, 2024
2 parents f9b9d54 + 8a53359 commit f2c0d62
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/full-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: (Development) - Full
run-name: "#${{ github.run_number }}: ${{ github.event.head_commit.message }}"
jobs:
full:
uses: dmg0345/scrapy-tor-playwright-demo/.github/workflows/reusable-full.yml@develop
uses: dmg0345/scrapy-tor-playwright-demo/.github/workflows/reusable-full.yml@master
secrets:
netlify_pat: ${{ secrets.NETLIFY_PAT }}
netlify_site_id: ${{ secrets.NETLIFY_SITE_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/full-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name: (Production) - Full
run-name: "#${{ github.run_number }}: ${{ github.event.head_commit.message }}"
jobs:
full:
uses: dmg0345/scrapy-tor-playwright-demo/.github/workflows/reusable-full.yml@develop
uses: dmg0345/scrapy-tor-playwright-demo/.github/workflows/reusable-full.yml@master
secrets:
netlify_pat: ${{ secrets.NETLIFY_PAT }}
netlify_site_id: ${{ secrets.NETLIFY_SITE_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/full-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name: (Staging) - Full
run-name: "#${{ github.run_number }}: ${{ github.event.pull_request.title }}"
jobs:
full:
uses: dmg0345/scrapy-tor-playwright-demo/.github/workflows/reusable-full.yml@develop
uses: dmg0345/scrapy-tor-playwright-demo/.github/workflows/reusable-full.yml@master
secrets:
netlify_pat: ${{ secrets.NETLIFY_PAT }}
netlify_site_id: ${{ secrets.NETLIFY_SITE_ID }}
Expand Down
6 changes: 3 additions & 3 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ def collect_folders(path: str) -> list[str]:
for name in dirs:
if name not in ["__pycache__", ".pytest_cache"]:
final_dirs.append(os.path.normpath(os.path.realpath(os.path.join(root, name))))
print(final_dirs[-1])

return final_dirs


# If extensions (or modules to document with autodoc) are in another directory, add these directories to sys.path here.
sys.path.extend(collect_folders(r"../src"))
sys.path.extend(collect_folders(r"../tests"))
root = os.path.normpath(os.path.join(os.path.dirname(__file__), ".."))
sys.path.extend(collect_folders(os.path.join(root, "src")))
sys.path.extend(collect_folders(os.path.join(root, "tests")))

## Project information #################################################################################################
# Project name.
Expand Down

0 comments on commit f2c0d62

Please sign in to comment.