pytest-aiohttp allows to use aiohttp pytest plugin without need for implicitly
loading it like pytest_plugins = 'aiohttp.pytest_plugin'.
WWW: https://github.com/aio-libs/pytest-aiohttp
synctest is built on top of the standard unittest module and cuts down
boilerplate code when testing libraries for asyncio.
WWW: https://github.com/Martiusweb/asynctest
mping is a utility for pinging multiple hosts. It is written in shell with
minimal dependencies (awk, date, getconf, head, host, ping, sleep, sort, stty,
tr, uname, and xargs). It also has a feature to keep watching the given hosts
and alert to any changes in uptime.
Reviewed by: mat (mentor)
Approved by: mat (mentor)
Sponsored by: Smule, Inc.
Differential Revision: https://reviews.freebsd.org/D15875
It currently implements GeoSeries and GeoDataFrame types which are subclasses
of pandas.Series and pandas.DataFrame respectively. GeoPandas objects can act
on shapely geometry objects and perform geometric operations.
GeoPandas geometry operations are cartesian. The coordinate reference system
(crs) can be stored as an attribute on an object, and is automatically set when
loading from a file. Objects may be transformed to new coordinate systems with
the to_crs() method. There is currently no enforcement of like coordinates for
operations, but that may change in the future.
WWW: https://pypi.python.org/pypi/geopandas
PR: 228666
Submitted by: lbartoletti@tuxfamily.org
writing data in standard Python IO style and relies upon familiar Python
types and protocols such as files, dictionaries, mappings, and iterators
instead of classes specific to OGR. Fiona can read and write real-world
data using multi-layered GIS formats and zipped virtual file systems and
integrates readily with other Python GIS packages such as pyproj, Rtree,
and Shapely. Fiona is supported only on CPython versions 2.7 and 3.4+.
WWW: https://pypi.python.org/pypi/fiona
PR: 228665
Submitted by: lbartoletti@tuxfamily.org
- Use the upstream release tarballs with a pregenerated configure, etc.
- Drop the seemingly unnecessary post-configure which was added in
r308039 but with no reason given for it in the associated PR or
log
- Update --help output to mention the sndio drivers too
- Patch audio driver list in the man pages too
- Follow WWW redirect
- Take maintainership
Changes: https://qsynth.sourceforge.io/qsynth-downloads.html
Fix errors like this:
error: always_inline function '_mm_loadu_ps' requires target feature 'mmx',
but would be inlined into function 'x' that is compiled without support for 'mmx'
Reported by: fallout
- Switch to using Github sources, easier to maintain
- Remove dependency on git
- Add dependency on autoreconf as we are now using sources from git
- Thanks to Bernhard, and reporter for help with testing
PR: 228935
Reported by: post at zuglufttier dot de