Skip to content

Commit

Permalink
Merge pull request #200 from imrehg/black-fixes
Browse files Browse the repository at this point in the history
update "black" dependency as it was breaking on its own dependencies
  • Loading branch information
acroz committed May 13, 2022
2 parents a5eb7bc + 1944ac5 commit 5f480a7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9]
python: [3.6, 3.7, 3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[tool.black]
line-length = 79

[tool.setuptools_scm]
version_scheme = "post-release"
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ def load_readme():
author_email="opensource@faculty.ai",
license="Apache Software License",
packages=find_packages(),
use_scm_version={"version_scheme": "post-release"},
setup_requires=["setuptools_scm"],
python_requires=">=3.6",
install_requires=[
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38,39}, flake8, black, license
envlist = py{36,37,38,39,310}, flake8, black, license

[testenv]
sitepackages = False
Expand All @@ -20,7 +20,7 @@ commands =
[testenv:black]
skip_install = True
deps =
black==20.8b1
black==22.3.0
commands =
black {posargs:--check setup.py faculty tests}

Expand Down

0 comments on commit 5f480a7

Please sign in to comment.