Skip to content

Commit

Permalink
fix: Bumped up the dependency versions (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
OmAximani0 authored Sep 12, 2023
1 parent 72d981f commit 52767cf
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 26 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.8

- name: Install pypa/build
run: >-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7, 3.8, 3.9 ]
python-version: [ '3.8', '3.9', '3.10' ]

steps:
- uses: actions/checkout@v3
Expand Down
16 changes: 8 additions & 8 deletions requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
-r requirements.txt

black==20.8b1
pre-commit==2.10.1
xenon==0.7.1
doc8==0.8.1
pytest==6.2.2
pytest-cov==2.11.1
requests-mock==1.8.0
flake8==5.0.4
black==23.3.0
pre-commit==3.4.0
xenon==0.9.1
doc8==1.1.1
pytest==7.4.1
pytest-cov==4.1.0
requests-mock==1.11.0
flake8==6.1.0
40 changes: 27 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,33 @@ isort-show-traceback = True
no-accept-encodings = True

# Disable some checks:
ignore = C812, # missing trailing comma
C815, # missing trailing comma in Python 3.5+
C816, # missing trailing comma in Python 3.6+
C901, # function is too complex
D100, # Missing docstring in public module
D104, # Missing docstring in public package
D202, # No blank lines allowed after function docstring
D401, # First line should be in imperative mood
E203, # Whitespace before ':'
RST201, # Block quote ends without a blank line; unexpected unindent.
RST203, # Definition list ends without a blank line; unexpected unindent.
RST301, # Unexpected indentation.
W503, # Line break occurred before a binary operator
ignore =
# missing trailing comma
C812,
# missing trailing comma in Python 3.5+
C815,
# missing trailing comma in Python 3.6+
C816,
# function is too complex
C901,
# Missing docstring in public module
D100,
# Missing docstring in public package
D104,
# No blank lines allowed after function docstring
D202,
# First line should be in imperative mood
D401,
# Whitespace before ':'
E203,
# Block quote ends without a blank line; unexpected unindent.
RST201,
# Definition list ends without a blank line; unexpected unindent.
RST203,
# Unexpected indentation.
RST301,
# Line break occurred before a binary operator
W503,

max-methods = 9
max-module-members = 9
Expand Down

0 comments on commit 52767cf

Please sign in to comment.