Skip to content

Commit

Permalink
Update various code quality and development time dependencies (#389)
Browse files Browse the repository at this point in the history
Closes: #384
  • Loading branch information
fohrloop committed Sep 19, 2024
1 parent d58a54e commit 216fdda
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
1 change: 1 addition & 0 deletions docs/source/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
### 👷 Maintenance
- Fixed GitHub Release pipeline: Creates releases only from tags. Added automatic titles. Cannot accidentally publish with "main" tag. ([#328](https://github.com/fohrloop/wakepy/pull/328), [#346](https://github.com/fohrloop/wakepy/pull/346))
- Fixed: Tests failing on Fedora 40 [#381](https://github.com/fohrloop/wakepy/pull/381)
- Update various development time dependencies [#389](https://github.com/fohrloop/wakepy/pull/389)

## wakepy 0.9.1
🗓️ 2024-06-04
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements-check.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# requirements for code style; linters, code analysis and formatting tools
invoke==2.2.0
black==24.2.0
black==24.8.0
isort==5.13.2
ruff==0.3.2
ruff==0.6.5
-r requirements-mypy.txt
2 changes: 1 addition & 1 deletion requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
-r requirements-docs.txt
-r requirements-check.txt

sphinx-autobuild==2024.2.4
sphinx-autobuild==2024.9.19
IPython
invoke==2.2.0
# Colorama is used with the tasks.py (invoke commands)
Expand Down
4 changes: 2 additions & 2 deletions requirements/requirements-mypy.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# mypy 1.9.0 only supports Python 3.8+
mypy==1.9.0; python_version>='3.8'
# This only supports Python 3.8+
mypy==1.11.2; python_version>='3.8'
# Last mypy version to support Python 3.7
mypy==1.4.1; python_version=='3.7'

Expand Down
8 changes: 5 additions & 3 deletions requirements/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# requirements for running unit tests

# Python 3.7 support dropped in tox 4.9.0
tox==4.14.2; python_version>='3.8'
tox==4.20.0; python_version>='3.8'
tox==4.8.0; python_version<'3.8'

# Python 3.7 support dropped in pytest 8.0.0
pytest==8.1.1; python_version>='3.8'
pytest==8.3.3; python_version>='3.8'
pytest==7.4.4; python_version=='3.7'

pytest-cov==4.1.0
# Python 3.7 support dropped in pytest-cov 5.0.0
pytest-cov==5.0.0; python_version>='3.8'
pytest-cov==4.1.0; python_version=='3.7'
coverage-conditional-plugin==0.9.0

# Python 3.7 support dropped in time-machine 2.11.0
Expand Down

0 comments on commit 216fdda

Please sign in to comment.