Skip to content

Commit

Permalink
Merge pull request #4 from sanjaymjoshi/fin2
Browse files Browse the repository at this point in the history
Fix python dependency, update version
  • Loading branch information
sanjaymjoshi authored May 14, 2023
2 parents d339991 + a90e8af commit 8159c95
Show file tree
Hide file tree
Showing 5 changed files with 217 additions and 207 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,23 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v2

- name: Setup Python
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}

- name: Install dependencies with pipenv
run: |
pip install pipenv
pipenv install --deploy --dev
pipenv graph
- run: pipenv run isort --recursive --diff .
- run: pipenv run black --check .
Expand Down
6 changes: 2 additions & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@ name = "pypi"
url = "https://pypi.python.org/simple"
verify_ssl = true

[requires]
python_version = "3.9"

[packages]
relistats = {editable = true, path = "."}

[dev-packages]
black = "==22.3.0"
black = "*"
flake8 = "*"
isort = "*"
typing_extensions = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
Expand Down
Loading

0 comments on commit 8159c95

Please sign in to comment.