Skip to content

Commit

Permalink
'final_update'
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvaneshkm committed Jun 16, 2024
1 parent d87bac1 commit 12d092d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip install flake8 pytest black mypy
pip install tox==3.24.4
pip install -r requirements.txt
- name: Test with tox
run: tox
4 changes: 3 additions & 1 deletion .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
pip install flake8 pytest black mypy
pip install tox==3.24.4
pip install -r requirements.txt
pip install build
- name: Lint with flake8
run: |
Expand Down
13 changes: 8 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ install_requires =

[options.extras_require]
testing =
black
flake8
pytest
mypy
tox
pytest>=7.1.3
mypy>=0.971
flake8>=5.0.4
tox>=3.24.4
black>=22.8.0

[options.package_data]
DataBase-Connect=py.typed

[flake8]
max-line-length = 160
Expand Down

0 comments on commit 12d092d

Please sign in to comment.