Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add KY scraper #440

Merged
merged 6 commits into from
Feb 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python-version: '3.8'
cache: 'pipenv'

- run: pipenv install --dev --pre
- run: pipenv install --dev

- id: lint
name: Lint
Expand All @@ -41,7 +41,7 @@ jobs:
python-version: '3.8'
cache: 'pipenv'

- run: pipenv install --dev --pre
- run: pipenv install --dev

- id: mypy
name: Mypy
Expand All @@ -62,7 +62,7 @@ jobs:
python-version: '3.8'
cache: 'pipenv'

- run: pipenv install --dev --pre
- run: pipenv install --dev

- id: tally
name: Tally sources
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
python-version: ${{ matrix.python }}
cache: 'pipenv'

- run: pipenv install --dev --pre
- run: pipenv install --dev

- id: run
name: Run tests
Expand All @@ -121,10 +121,10 @@ jobs:

- uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.8'
cache: 'pipenv'

- run: pipenv install --dev --pre
- run: pipenv install --dev

- id: build
name: Build release
Expand All @@ -151,7 +151,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.8'

- id: fetch
name: Fetch artifact
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
steps:
- uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.8'

- id: fetch
name: Fetch artifact
Expand Down
2 changes: 2 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pre-commit = "*"
sphinxcontrib-napoleon = "*"
types-requests = "*"
mypy = "*"
typing-extensions = "*"

[packages]
bs4 = "*"
Expand All @@ -31,6 +32,7 @@ openpyxl = "*"
pdfplumber = "*"
tenacity = "*"
click = "*"
xlrd = "*"

[requires]
python_version = "3.8"
Expand Down
Loading