-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added api key for semantic scholar * added docs preview and test with poetry
- Loading branch information
1 parent
3252b98
commit f406a49
Showing
13 changed files
with
3,228 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Deploy PR Docs previews | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- closed | ||
|
||
concurrency: preview-${{ github.ref }} | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.6 | ||
- uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: "3.12" | ||
- uses: pre-commit/action@v3.0.1 | ||
deploy-preview: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.6 | ||
- uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: "3.12" | ||
- name: Setup Poetry | ||
uses: abatilo/actions-poetry@v3.0.0 | ||
with: | ||
poetry-version: 1.8.3 | ||
- name: Install Packages | ||
run: poetry install --with docs,dev | ||
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com' | ||
- name: Build Docs | ||
run: poetry run mkdocs build | ||
- name: Deploy preview | ||
uses: rossjrw/pr-preview-action@v1.4.7 | ||
with: | ||
source-dir: ./site/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Build and Publish Package to Pypi | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
tests: | ||
strategy: | ||
matrix: | ||
python-version: ["3.10", "3.11", "3.12"] | ||
os: [ubuntu-latest, macos-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4.1.6 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Setup Poetry | ||
uses: abatilo/actions-poetry@v3.0.0 | ||
with: | ||
poetry-version: 1.8.3 | ||
- name: Install Packages | ||
run: poetry install --with dev,docs | ||
- name: Build coverage file | ||
run: | | ||
poetry run pytest | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.6 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: "3.12" | ||
- name: Setup Poetry | ||
uses: abatilo/actions-poetry@v3.0.0 | ||
with: | ||
poetry-version: 1.8.3 | ||
- name: Install dependencies | ||
run: | | ||
poetry --version | ||
poetry install | ||
- name: Build and publish | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | ||
env: | ||
PYPI_USERNAME: __token__ | ||
PYPI_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} | ||
run: | | ||
poetry publish --build -u $PYPI_USERNAME -p $PYPI_PASSWORD |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,47 @@ | ||
exclude: "^notebooks/|^notes/" | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.2.0 | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-added-large-files | ||
- id: debug-statements | ||
- id: detect-private-key | ||
- id: end-of-file-fixer | ||
- id: requirements-txt-fixer | ||
- id: trailing-whitespace | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v0.960 | ||
hooks: | ||
- id: mypy | ||
args: [--no-strict-optional, --ignore-missing-imports] | ||
files: ^(eerily/|tests/) | ||
- repo: https://github.com/ambv/black | ||
rev: 22.6.0 | ||
rev: 24.4.2 | ||
hooks: | ||
- id: black | ||
language: python | ||
args: | ||
- "--line-length=120" | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.10.1 | ||
rev: 5.13.2 | ||
hooks: | ||
- id: isort | ||
name: isort (python) | ||
args: ["--profile", "black"] | ||
args: ["--multi-line", "3", "--profile", "black", "--treat-comment-as-code", "# %%", "--float-to-top"] | ||
- repo: local | ||
# We do not use pre-commit/mirrors-mypy, | ||
# as it comes with opinionated defaults | ||
# (like --ignore-missing-imports) | ||
# and is difficult to configure to run | ||
# with the dependencies correctly installed. | ||
hooks: | ||
- id: mypy | ||
name: mypy | ||
entry: mypy | ||
language: python | ||
# language_version: python3.12 | ||
additional_dependencies: | ||
- mypy | ||
- pandas-stubs | ||
- pydantic | ||
- pytest | ||
types: | ||
- python | ||
# use require_serial so that script | ||
# is only called once per commit | ||
require_serial: true | ||
# Print the number of files as a sanity-check | ||
verbose: true | ||
exclude: ^docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.2.8" | ||
__version__ = "0.2.9" |
Oops, something went wrong.