Skip to content

Commit

Permalink
Merge pull request #25122 from oscarbenjamin/pr_bump_version_112
Browse files Browse the repository at this point in the history
maint: bump version to 1.12
  • Loading branch information
oscarbenjamin committed May 9, 2023
2 parents 2c3de5f + 092a0e4 commit 8059df7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -16,7 +16,7 @@ on:
- '1.12'
env:
release_branch: '1.12'
release_version: '1.12rc1'
release_version: '1.12'
previous_version: '1.11'

jobs:
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Expand Up @@ -8,7 +8,8 @@ select = [

# Ignore rules that currently fail on the SymPy codebase
ignore = [
"C416", # Unnecessary `dict` comprehension (rewrite using `dict()`)
"C419", # Unnecessary list comprehension
"C416", # Unnecessary dict comprehension
"E401", # Multiple imports on one line
"E402", # Module level import not at top of file
"E501", # Line too long (<LENGTH> > 88 characters)
Expand Down
2 changes: 1 addition & 1 deletion sympy/polys/solvers.py
Expand Up @@ -31,7 +31,7 @@ class RawMatrix(MutableDenseMatrix):
Matrix should be of type ``Expr``.
"""
_sympify = staticmethod(lambda x: x)
_sympify = staticmethod(lambda x: x) # type: ignore

def __init__(self, *args, **kwargs):
sympy_deprecation_warning(
Expand Down
2 changes: 1 addition & 1 deletion sympy/release.py
@@ -1 +1 @@
__version__ = "1.12rc1"
__version__ = "1.12"

0 comments on commit 8059df7

Please sign in to comment.