{"id":21919444,"url":"https://github.com/dlrsp/requirements","last_synced_at":"2026-02-11T19:04:49.213Z","repository":{"id":231771954,"uuid":"782645591","full_name":"DLRSP/requirements","owner":"DLRSP","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-11T02:26:33.000Z","size":408,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T02:34:15.116Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DLRSP.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-05T18:07:18.000Z","updated_at":"2026-01-11T02:26:37.000Z","dependencies_parsed_at":"2024-04-05T21:25:06.465Z","dependency_job_id":"338a01f2-eb5d-4dd1-bd58-e59bfe11eda6","html_url":"https://github.com/DLRSP/requirements","commit_stats":null,"previous_names":["dlrsp/requirements"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/DLRSP/requirements","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Frequirements","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Frequirements/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Frequirements/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Frequirements/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DLRSP","download_url":"https://codeload.github.com/DLRSP/requirements/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DLRSP%2Frequirements/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29341717,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T18:58:20.535Z","status":"ssl_error","status_checked_at":"2026-02-11T18:56:44.814Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-28T20:07:51.734Z","updated_at":"2026-02-11T19:04:49.209Z","avatar_url":"https://github.com/DLRSP.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Requirements\n\nCentralized repository for managing common Python dependencies used in DLRSP organization projects.\n\n## 📋 Description\n\nThis repository contains compiled Python requirements files for different Python versions, used as common dependencies across all organization projects.\n\n## 📦 Available Files\n\n### Development Requirements\n- `py38-dev.txt` - Python 3.8\n- `py39-dev.txt` - Python 3.9\n- `py310-dev.txt` - Python 3.10\n- `py311-dev.txt` - Python 3.11\n\n### Documentation Requirements\n- `py-docs.txt` - Dependencies for documentation generation (MkDocs)\n\n### Source Files\n- `dev.in` - Source file for development requirements\n- `docs.in` - Source file for documentation requirements\n\n## 🚀 Usage\n\n### Installation via GitHub URL\n\nTo use these requirements in a project, you can install them directly from GitHub:\n\n```bash\n# For Python 3.10\npip install -r https://raw.githubusercontent.com/DLRSP/requirements/main/py310-dev.txt\n\n# For Python 3.11\npip install -r https://raw.githubusercontent.com/DLRSP/requirements/main/py311-dev.txt\n\n# For documentation\npip install -r https://raw.githubusercontent.com/DLRSP/requirements/main/py-docs.txt\n```\n\n### Usage in GitHub Actions\n\nExample usage in a GitHub Actions workflow:\n\n```yaml\n- name: Install dependencies\n  run: |\n    pip install -r https://raw.githubusercontent.com/DLRSP/requirements/main/py310-dev.txt\n```\n\n### Usage with Tags/Versions\n\nTo use a specific version, you can reference a tag:\n\n```bash\npip install -r https://raw.githubusercontent.com/DLRSP/requirements/v1.0.0/py310-dev.txt\n```\n\n## 🔄 Updating Requirements\n\nThe `.txt` files are automatically generated from `.in` files using `pip-compile`:\n\n```bash\n# For Python 3.10\npip-compile --allow-unsafe --generate-hashes --output-file=py310-dev.txt dev.in\n\n# For Python 3.11\npip-compile --allow-unsafe --generate-hashes --output-file=py311-dev.txt dev.in\n\n# For documentation\npip-compile --allow-unsafe --generate-hashes --output-file=py-docs.txt docs.in\n```\n\n## 📝 Included Dependencies\n\n### Development Requirements (`dev.in`)\n- `pip`, `setuptools`, `wheel` - Base tools\n- `tox`, `tox-py` - Testing and automation\n- `coverage` - Code coverage\n- `pytest`, `pytest-django`, `pytest-randomly` - Testing frameworks\n\n### Documentation Requirements (`docs.in`)\n- `mkdocs`, `mkdocs-material` - Documentation generation\n- `mkdocs-git-revision-date-plugin` - Plugin for revision dates\n\n## 🔧 Automated Workflows\n\nThis repository uses centralized workflows from `DLRSP/workflows`:\n- **CI/CD**: Runs automated tests on push and PR\n- **Upgrade Dependencies**: Automatically updates common dependencies\n- **PR Rebase**: Automatically rebases PRs when push is made to main\n\n## 📚 Notes\n\n- Requirements files are generated with `--generate-hashes` to ensure security and reproducibility\n- The `pip`, `setuptools` and `wheel` packages are marked as `--allow-unsafe` as they are necessary for installation\n- This repository is not an installable Python package, but a repository of requirements files\n\n## 🤝 Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines on how to contribute.\n\n## 📄 License\n\nMIT License - See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdlrsp%2Frequirements","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdlrsp%2Frequirements","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdlrsp%2Frequirements/lists"}