Skip to content

Commit

Permalink
Release 0.0.44
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Mar 31, 2023
1 parent 1f52b96 commit b40ca33
Show file tree
Hide file tree
Showing 148 changed files with 1,666 additions and 7,418 deletions.
1 change: 1 addition & 0 deletions .fernignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Specify files that shouldn't be modified by Fern
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: ci

on: [push]
jobs:
compile:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Install dependencies
run: poetry install
- name: Compile
run: poetry run mypy .

publish:
needs: [ compile ]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Install dependencies
run: poetry install
- name: Publish to pypi
run: |
poetry config repositories.remote
poetry --no-interaction -v publish --build --repository remote --username "$PYPI_USERNAME" --password "$PYPI_PASSWORD"
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
66 changes: 3 additions & 63 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,64 +1,4 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
venv/
.python-version

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

#Ipython Notebook
.ipynb_checkpoints
.mypy_cache/
__pycache__/
poetry.toml
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

15 changes: 0 additions & 15 deletions Pipfile

This file was deleted.

53 changes: 0 additions & 53 deletions Pipfile.lock

This file was deleted.

86 changes: 0 additions & 86 deletions README.md

This file was deleted.

12 changes: 0 additions & 12 deletions docs/Attachments.md

This file was deleted.

10 changes: 0 additions & 10 deletions docs/Data.md

This file was deleted.

14 changes: 0 additions & 14 deletions docs/EmailOverride.md

This file was deleted.

11 changes: 0 additions & 11 deletions docs/EmailRecipient.md

This file was deleted.

19 changes: 0 additions & 19 deletions docs/EventOverride.md

This file was deleted.

9 changes: 0 additions & 9 deletions docs/EventPayload.md

This file was deleted.

11 changes: 0 additions & 11 deletions docs/Param.md

This file was deleted.

Loading

0 comments on commit b40ca33

Please sign in to comment.