Skip to content

Commit

Permalink
Merge pull request #27 from CrowdJustice/update-black
Browse files Browse the repository at this point in the history
Update black
  • Loading branch information
philipdouglas authored May 3, 2022
2 parents 96b4c6d + b782c07 commit e6a8a8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-flake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install flake8
pip install -r requirements.txt
pip install -e .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
pip install -e .
- name: Test with pytest
run: |
pytest
3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# -*- coding: utf-8 -*-
from setuptools import setup

version = "1.2.1"
version = "1.2.2"

packages = ["legl_dev"]

package_data = {"": ["*"]}

install_requires = ["black==19.10b0", "isort==5.9.3", "typer>=0.4.0"]
install_requires = ["black", "isort==5.9.3", "typer>=0.4.0"]

entry_points = {"console_scripts": ["legl-dev = legl_dev.main:app"]}

Expand Down

0 comments on commit e6a8a8e

Please sign in to comment.