Skip to content

Commit

Permalink
Merge pull request #278 from DeemOnSecurity/bug/poetry-imports-and-ac…
Browse files Browse the repository at this point in the history
…tion

Fixes imports and poetry to legacy action
  • Loading branch information
jullrich authored Jul 31, 2023
2 parents c143cd3 + 23ebc18 commit a98f8ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/poetry-to-legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
cd srv/isc-agent
poetry export -f requirements.txt -o requirements.txt --without-hashes
grep -v 'Windows' requirements.txt | cut -f1 -d '=' > ../../bin/requirements.txt
grep -v 'Windows' requirements.txt | cut -f1 -d '=' | sed 's/all-non-platform/all_non_platform/' > ../../bin/requirements.txt
- name: Commit changes
uses: EndBug/add-and-commit@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion srv/isc-agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.7.1"
jinja2 = "~=3.0.3"
pydantic = {extras = ["dotenv", "email"], version = "~=1.9.0"}
pydantic = {extras = ["email"], version = "~=1.9.0"}
requests = "~=2.27.1"
sqlalchemy = "~=1.4.31"
cryptography = "==3.4.6"
Expand Down

0 comments on commit a98f8ee

Please sign in to comment.