Skip to content

Commit

Permalink
Merge pull request #1 from turbomam/multiple-gh-soruces
Browse files Browse the repository at this point in the history
discos request timeout
  • Loading branch information
turbomam authored Jul 1, 2024
2 parents 1338c68 + 1f61f77 commit c3b025f
Show file tree
Hide file tree
Showing 16 changed files with 623 additions and 89 deletions.
46 changes: 23 additions & 23 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"template": "https://github.com/fpgmaas/cookiecutter-poetry.git",
"commit": "f448c9c6407c799f6b81b8e310608cb841e98d15",
"checkout": null,
"context": {
"cookiecutter": {
"author": "Mark Andrew Miller",
"email": "[email protected]",
"author_github_handle": "turbomam",
"project_name": "llm-github",
"project_slug": "llm_github",
"project_description": "Tools for extracting knowledge from GitHub issues, PR comments, etc.",
"include_github_actions": "y",
"publish_to": "pypi",
"deptry": "y",
"mkdocs": "y",
"codecov": "y",
"dockerfile": "y",
"devcontainer": "n",
"open_source_license": "MIT license",
"_template": "https://github.com/fpgmaas/cookiecutter-poetry.git"
}
},
"directory": null
"template": "https://github.com/fpgmaas/cookiecutter-poetry.git",
"commit": "f448c9c6407c799f6b81b8e310608cb841e98d15",
"checkout": null,
"context": {
"cookiecutter": {
"author": "Mark Andrew Miller",
"email": "[email protected]",
"author_github_handle": "turbomam",
"project_name": "llm-github",
"project_slug": "llm_github",
"project_description": "Tools for extracting knowledge from GitHub issues, PR comments, etc.",
"include_github_actions": "y",
"publish_to": "pypi",
"deptry": "y",
"mkdocs": "y",
"codecov": "y",
"dockerfile": "y",
"devcontainer": "n",
"open_source_license": "MIT license",
"_template": "https://github.com/fpgmaas/cookiecutter-poetry.git"
}
},
"directory": null
}
8 changes: 4 additions & 4 deletions .github/actions/setup-poetry-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: "setup-poetry-env"
description: "Composite action to setup the Python and poetry environment."

inputs:
python-version:
required: false
description: "The python version to use"
default: "3.11"
python-version:
required: false
description: "The python version to use"
default: "3.11"

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- name: Check out
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/on-release-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
branches: [main]

jobs:

publish:
runs-on: ubuntu-latest
steps:
Expand All @@ -28,7 +27,7 @@ jobs:
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
RELEASE_VERSION: ${{ steps.vars.outputs.tag }}

deploy-docs:
needs: publish
runs-on: ubuntu-latest
Expand All @@ -41,4 +40,3 @@ jobs:

- name: Deploy documentation
run: poetry run mkdocs gh-deploy --force

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.idea/
*.sqlite


###
Expand Down
1 change: 0 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

2 changes: 1 addition & 1 deletion docs/modules.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
::: llm_github.foo
::: llm_github.core
Loading

0 comments on commit c3b025f

Please sign in to comment.