Skip to content

Commit

Permalink
Update deps + generated _speedup.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes committed Oct 1, 2024
1 parent bb87eb8 commit 3767eed
Show file tree
Hide file tree
Showing 4 changed files with 1,943 additions and 1,884 deletions.
6 changes: 3 additions & 3 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# NumPy is required for building `bezier` from source.
numpy >= 2.0.0
setuptools >= 70.0.0
numpy >= 2.1.1
setuptools >= 75.1.0
# Sphinx and related are required for building documentation.
Sphinx >= 7.3.7
Sphinx >= 8.0.2
# See: https://github.com/readthedocs/sphinx_rtd_theme/issues/1463
sphinx-copybutton >= 0.5.2
sphinx-docstring-typing >= 0.0.4
Expand Down
24 changes: 12 additions & 12 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,28 +29,28 @@
IS_MACOS = sys.platform == "darwin"
IS_WINDOWS = os.name == "nt"
DEPS = {
"black": "black >= 24.4.2",
"black": "black >= 24.8.0",
"cmake-format": "cmake-format >= 0.6.13",
"cmake": "cmake >= 3.29.5.1",
"cmake": "cmake >= 3.30.4",
"coverage": "coverage",
"Cython": "Cython >= 3.0.10",
"delocate": "delocate >= 0.11.0",
"delvewheel": "delvewheel >= 1.6.0",
"Cython": "Cython >= 3.0.11",
"delocate": "delocate >= 0.12.0",
"delvewheel": "delvewheel >= 1.8.2",
"docutils": "docutils",
"flake8": "flake8",
"flake8-import-order": "flake8-import-order",
"jsonschema": "jsonschema >= 4.22.0",
"jsonschema": "jsonschema >= 4.23.0",
"lcov-cobertura": "lcov-cobertura >= 2.0.2",
"matplotlib": "matplotlib >= 3.9.0",
"numpy": "numpy >= 2.0.0",
"matplotlib": "matplotlib >= 3.9.2",
"numpy": "numpy >= 2.1.1",
"pycobertura": "pycobertura >= 3.3.2",
"Pygments": "Pygments",
"pylint": "pylint >= 3.2.3",
"pytest": "pytest >= 8.2.2",
"pylint": "pylint >= 3.3.1",
"pytest": "pytest >= 8.3.3",
"pytest-cov": "pytest-cov",
"referencing": "referencing >= 0.35.1",
"scipy": "scipy >= 1.13.1",
"sympy": "sympy >= 1.12.1",
"scipy": "scipy >= 1.14.1",
"sympy": "sympy >= 1.13.3",
"seaborn": "seaborn >= 0.13.2",
}
BASE_DEPS = (DEPS["numpy"], DEPS["pytest"])
Expand Down
2 changes: 2 additions & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ ignore-long-lines=
max-args=7
# Maximum number of attributes for a class (see R0902).
max-attributes=8
# Maximum number of positional arguments for a function or method (see R0917).
max-positional-arguments=11

[VARIABLES]
dummy-variables-rgx=(_+[a-zA-Z0-9]*?$)|dummy|^unused_
Expand Down
Loading

0 comments on commit 3767eed

Please sign in to comment.