Skip to content

Commit

Permalink
Merge pull request #183 from ska-sa/prep-3.9
Browse files Browse the repository at this point in the history
Prepare 3.9.0 release
  • Loading branch information
bmerry authored Mar 28, 2022
2 parents 6ad9b71 + 580d150 commit 8e0067e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 15 deletions.
2 changes: 1 addition & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

.. rubric:: Development version
.. rubric:: 3.9.0

- Added ``substreams`` to :py:class:`spead2.recv.StreamConfig` to improve
handling of interleaved heaps from multiple senders.
Expand Down
12 changes: 6 additions & 6 deletions manylinux/before_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ yum install -y \
unset SSL_CERT_FILE

# Install boost
wget --progress=dot:mega https://ufpr.dl.sourceforge.net/project/boost/boost/1.74.0/boost_1_74_0.tar.bz2 -O /tmp/boost_1_74_0.tar.bz2
tar -C /tmp -jxf /tmp/boost_1_74_0.tar.bz2
cd /tmp/boost_1_74_0
wget --progress=dot:mega https://ufpr.dl.sourceforge.net/project/boost/boost/1.78.0/boost_1_78_0.tar.bz2 -O /tmp/boost_1_78_0.tar.bz2
tar -C /tmp -jxf /tmp/boost_1_78_0.tar.bz2
cd /tmp/boost_1_78_0
./bootstrap.sh --prefix=/usr --with-libraries=program_options,system
./b2 cxxflags=-fPIC link=static install

# Install rdma-core
wget --progress=dot:mega https://github.com/linux-rdma/rdma-core/releases/download/v31.0/rdma-core-31.0.tar.gz -O /tmp/rdma-core-31.0.tar.gz
tar -C /tmp -zxf /tmp/rdma-core-31.0.tar.gz
cd /tmp/rdma-core-31.0
wget --progress=dot:mega https://github.com/linux-rdma/rdma-core/releases/download/v39.0/rdma-core-39.0.tar.gz -O /tmp/rdma-core-39.0.tar.gz
tar -C /tmp -zxf /tmp/rdma-core-39.0.tar.gz
cd /tmp/rdma-core-39.0
mkdir build
cd build
cmake3 -GNinja -DCMAKE_BUILD_TYPE=Release ..
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[build-system]
# Setuptools is pinned to an older version due to
# https://github.com/pypa/setuptools/issues/3130
requires = ["setuptools==59.8.0", "wheel", "pybind11==2.9.1", "setuptools_scm==6.4.2"]
requires = ["setuptools", "wheel", "pybind11==2.9.1", "setuptools_scm==6.4.2"]

[tool.cibuildwheel]
build-frontend = "build"
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ importlib-metadata==4.2.0
# pytest
iniconfig==1.1.1
# via pytest
jinja2==3.0.3
jinja2==3.1.0
# via -r requirements.in
llvmlite==0.38.0
# via numba
markupsafe==2.1.0
markupsafe==2.1.1
# via jinja2
mccabe==0.6.1
# via flake8
Expand Down Expand Up @@ -48,12 +48,12 @@ pyflakes==2.4.0
# via flake8
pyparsing==3.0.7
# via packaging
pytest==7.0.1
pytest==7.1.1
# via
# -r requirements.in
# pytest-asyncio
# pytest-timeout
pytest-asyncio==0.18.1
pytest-asyncio==0.18.2
# via -r requirements.in
pytest-timeout==2.1.0
# via -r requirements.in
Expand Down
2 changes: 1 addition & 1 deletion src/spead2/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.8.0"
__version__ = "3.9.0"

0 comments on commit 8e0067e

Please sign in to comment.