-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update poetry.lock #18
Conversation
There was a mismatch between the dependency versions installed by the test envirnoments (specified by tox.ini) and the production/development environment (specified by pyproject.toml). For example: - in pyproject.toml, pytest's version specifier was >=7.1.2,<7.2.0, but in tox.ini it was pytest>=6.2.5,<6.3.0 - in pyproject.toml, numpy's version specifier was ^1.22.3 (which installed 1.23.3), but in tox.ini it was numpy>=1.21.0,<1.22.0 These changes might have introduced errors in tests and/or linting checks, which will be fixed in the following commits (but keeping the changes separated for better clarity).
Fix mypy errors raised after the upgrade to numpy 1.23.3, which became stricter in the checking of the type of elements of the NDArray generic.
- fix new error "consider-using-generator" - add 'pylint.extensions.no_self_use' in load-plugins option due to changes in pylint 2.14
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #18 +/- ##
==========================================
- Coverage 99.46% 99.44% -0.02%
==========================================
Files 25 22 -3
Lines 1116 1086 -30
==========================================
- Hits 1110 1080 -30
Misses 6 6
|
Update pyproject.toml, tox.ini and poetry.lock accordingly.
@@ -57,21 +57,23 @@ hypothesis = "^6.46.5" | |||
ipython = "^8.3.0" | |||
isort = "^5.10.1" | |||
jupyter = "^1.0.0" | |||
Markdown = "^3.3.7" | |||
markdown-include = "^0.6.0" | |||
Markdown = "==3.3.7" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
docs dependencies have been pinned to exact versions since, as it often happened in the past, the "docs stack" is fragile wrt version updates.
LGTM.
Merging, thanks. |
Proposed changes
This PR updates the poetry.lock file using the command
poetry update
.Fixes
n/a
Types of changes
What types of changes does your code introduce?
Put an
x
in the boxes that applyChecklist
Put an
x
in the boxes that apply.develop
branch (left side). Also you should start your branch off ourdevelop
.Further comments
n/a