Skip to content

Commit

Permalink
Merge branch 'main' into doc-folders
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby authored Aug 20, 2024
2 parents fedd5a3 + 79d1a8d commit 00bfac9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ Fix
Maintenance
~~~~~~~~~~~

* Remove pin on Sphinx
By :user:`Elliott Sales de Andrade <QuLogic>`, :issue:`552`.


.. _release_0.13.0:

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Homepage = "https://github.com/zarr-developers/numcodecs"

[project.optional-dependencies]
docs = [
"sphinx<7.0.0",
"sphinx",
"sphinx-issues",
"pydata-sphinx-theme",
"numpydoc",
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from setuptools.errors import CCompilerError, ExecError, PlatformError
from distutils import ccompiler
from distutils.command.clean import clean
from distutils.sysconfig import customize_compiler

# determine CPU support for SSE2 and AVX2
cpu_info = cpuinfo.get_cpu_info()
Expand Down Expand Up @@ -325,6 +326,7 @@ def run(self):
if cpuinfo.platform.machine() == 'x86_64':
S_files = glob('c-blosc/internal-complibs/zstd*/decompress/*amd64.S')
compiler = ccompiler.new_compiler()
customize_compiler(compiler)
compiler.src_extensions.append('.S')
compiler.compile(S_files)

Expand Down

0 comments on commit 00bfac9

Please sign in to comment.