Commit graph

461316 commits

Author SHA1 Message Date
Sandro Jäckel 0485281706 python310Packages.babel: 2.11.0 -> 2.12.1 2023-03-03 23:57:12 +01:00
Gabriella Gonzalez cfefc5c537 python3Packages.curio: Fix Linux build
In one of our internal mass rebuilds at work we noticed this package
fail on Linux and the two tests that failed were exactly the ones that
had already been disabled on macOS, so this also disables them on
Linux.
2023-03-03 23:57:12 +01:00
Fabian Affolter 5e465f988c python310Packages.pytest-httpx: add changelog to meta 2023-03-03 23:57:11 +01:00
Fabian Affolter 4077e26ae6 python310Packages.rich: add changelog to meta 2023-03-03 23:57:11 +01:00
Fabian Affolter c1e0ffb09c python310Packages.pytest-localserver: add changelog to meta 2023-03-03 23:57:11 +01:00
Fabian Affolter 1d0870247c python310Packages.pythonfinder: add pythonImportsCheck 2023-03-03 23:57:11 +01:00
Fabian Affolter 41c6f9bd89 python310Packages.pythonfinder: add changelog to meta 2023-03-03 23:57:11 +01:00
Fabian Affolter 33bd90d82c python310Packages.zarr: switch to pytestCheckHook
- add pythonImportsCheck
2023-03-03 23:57:11 +01:00
Fabian Affolter ab6528f300 python310Packages.zarr: update disabled and add format 2023-03-03 23:57:11 +01:00
Fabian Affolter b3f1d3553d python310Packages.zarr: add changelog to meta 2023-03-03 23:57:11 +01:00
Fabian Affolter 2c4a6a384b python310Packages.tifffile: update disabled 2023-03-03 23:57:11 +01:00
Fabian Affolter d0d6c2eddb python310Packages.tifffile: add changelog to meta 2023-03-03 23:57:11 +01:00
Fabian Affolter 020c62dd37 python310Packages.snitun: disable on unsupported Python releases 2023-03-03 23:57:11 +01:00
Fabian Affolter f158cca1b8 python310Packages.snitun: add changelog to meta 2023-03-03 23:57:10 +01:00
Fabian Affolter 164e1f1603 python310Packages.requests_ntlm: normalize pname 2023-03-03 23:57:10 +01:00
Fabian Affolter cb1e67b7fc python310Packages.yamllint: update disabled 2023-03-03 23:57:10 +01:00
Fabian Affolter f4234c111e python310Packages.yamllint: add changelog to meta 2023-03-03 23:57:10 +01:00
Fabian Affolter 321d467334 python310Packages.tabledata: add changelog to meta 2023-03-03 23:57:10 +01:00
Fabian Affolter 4133900983 python310Packages.moto: add changelog to meta 2023-03-03 23:57:10 +01:00
Fabian Affolter 61fd991e62 python310Packages.send2trash: add changelog to meta 2023-03-03 23:57:10 +01:00
Fabian Affolter bf960201d0 python310Packages.requests_ntlm: add changelog to meta 2023-03-03 23:57:10 +01:00
Martin Weinelt c23ab90300 python310Packages.send2trash: Fix setup.cfg validation confusion 2023-03-03 23:57:10 +01:00
Martin Weinelt fcd58ef58a python310Packages.numcodecs: Disable failing tests
These started failing with numpy 1.24.
2023-03-03 23:57:10 +01:00
Martin Weinelt 4aee441af7 python310Packages.kombu: Drop faulty version specifier in requirements
> Executing setuptoolsBuildPhase
> /nix/store/9z2cm958bxarf7n5i48czm7p7lwf9s58-python3.10-setuptools-67.4.0/lib/python3.10/site-packages/setuptools/config/setupcfg.py:520: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead.
>   warnings.warn(msg, warning_class)
> error in kombu setup command: 'tests_require' must be a string or list of strings containing valid project/version requirement specifiers; Expected end or semicolon (after name and no valid version specifier)
>     pytz>dev
>         ^
2023-03-03 23:57:10 +01:00
Martin Weinelt 2a04f99b8b python310Packages.readme_renderer: Disable failing tests
Likely due to pygments 2.14.0 incompatibiliy. Reported upstream.
2023-03-03 23:57:09 +01:00
Martin Weinelt b8561e8d1d python310Packages.watchdog: Disable failing test on aarch64
```
__________________________________ test_close __________________________________

    @pytest.mark.skipif(not platform.is_linux(), reason="FileCloseEvent only supported in GNU/Linux")
    @pytest.mark.flaky(max_runs=5, min_passes=1, rerun_filter=rerun_filter)
    def test_close():
        f_d = open(p('a'), 'a')
        start_watching()
        f_d.close()

        # After file creation/open in append mode
        event = event_queue.get(timeout=5)[0]
        assert event.src_path == p('a')
        assert isinstance(event, FileClosedEvent)

        event = event_queue.get(timeout=5)[0]
        assert os.path.normpath(event.src_path) == os.path.normpath(p(''))
        assert isinstance(event, DirModifiedEvent)

        # After read-only, only IN_CLOSE_NOWRITE is emitted but not caught for now #747
        open(p('a'), 'r').close()

>       assert event_queue.empty()
E       assert False
E        +  where False = <bound method Queue.empty of <queue.Queue object at 0xfffff5a96170>>()
E        +    where <bound method Queue.empty of <queue.Queue object at 0xfffff5a96170>> = <queue.Queue object at 0xfffff5a96170>.empty

event      = <DirModifiedEvent: event_type=modified, src_path='/build/tmp99ozlcxp', is_directory=True>
f_d        = <_io.TextIOWrapper name='/build/tmp99ozlcxp/a' mode='a' encoding='UTF-8'>

tests/test_emitter.py:153: AssertionError
```
2023-03-03 23:57:09 +01:00
Martin Weinelt f87e47b01a grpc: 1.51.1 -> 1.51.2
https://github.com/grpc/grpc/releases/tag/v1.52.1
2023-03-03 23:57:09 +01:00
Martin Weinelt 06145517c0 home-assistant: Relax pip, voluptuous-serialize, override sqlalchemy 2023-03-03 23:57:09 +01:00
Sandro Jäckel 606b753724 python310Packages.flask-limiter: normalize pname, complete meta 2023-03-03 23:57:09 +01:00
Sandro Jäckel 3da64a7147 python310Packages.daiquiri: init at 3.2.1 2023-03-03 23:57:09 +01:00
Sandro Jäckel 33a64eb430 pifpaf: init at 3.1.5 2023-03-03 23:57:09 +01:00
Sandro Jäckel 294cb16d78 python310Packages.pysaml2: 7.2.1 -> 7.4.1 2023-03-03 23:57:09 +01:00
Kirill Radzikhovskyy 86b4a95fe4 awsebcli: fixup, bump pathspec and termcolor versions 2023-03-03 23:57:09 +01:00
Robert Schütz f716974512 python310Packages.safety: relax packaging version constraint 2023-03-03 23:57:09 +01:00
Robert Schütz 898955e233 python310Packages.sqlalchemy-migrate: mark broken
When using SQLAlchemy 2.0 it fails with

    ModuleNotFoundError: No module named 'sqlalchemy.databases'
2023-03-03 23:57:09 +01:00
Robert Schütz 535bebcc6b pytrainer: pin sqlalchemy at 1.4.46
Sqlalchemy-migrate is incompatible with SQLAlchemy 2.0.
Also pin to python310 because sqlalchemy-migrate is incompatible with
Python 3.11.
2023-03-03 23:57:09 +01:00
Martin Weinelt 10f8156d49 python310Packages.boto3: 1.26.38 -> 1.26.79
Diff: https://github.com/boto/boto3/compare/1.26.38...1.26.79

Changelog: https://github.com/boto/boto3/blob/1.26.79/CHANGELOG.rst
2023-03-03 23:57:09 +01:00
Fabian Affolter e81d5eb22f python310Packages.apprise: update license 2023-03-03 23:57:08 +01:00
Fabian Affolter 36a48532ea python310Packages.pybalboa: add changelog to meta 2023-03-03 23:57:08 +01:00
Fabian Affolter 5f8f6e7d98 python310Packages.cmd2: add changelog to meta 2023-03-03 23:57:08 +01:00
Fabian Affolter 24c9d800c1 python310Packages.prometheus-client: add changelog to meta 2023-03-03 23:57:08 +01:00
Fabian Affolter e0deabfaa5 python310Packages.zwave-js-server-python: add changelog to meta 2023-03-03 23:57:08 +01:00
Fabian Affolter 4d637244e3 python310Packages.aeppl: add changelog to meta 2023-03-03 23:57:08 +01:00
Fabian Affolter fd509a60fe python310Packages.billiard: add changelog to meta 2023-03-03 23:57:08 +01:00
Fabian Affolter 67b7b9a67f python310Packages.pyairnow: add changelog to meta 2023-03-03 23:57:08 +01:00
Fabian Affolter 1eb1de155d python310Packages.gitpython: add changelog to meta 2023-03-03 23:57:08 +01:00
Fabian Affolter 5f6f34ea87 python310Packages.gitpython: 3.1.30 -> 3.1.31
Changelog: https://github.com/gitpython-developers/GitPython/blob/3.1.31/doc/source/changes.rst
2023-03-03 23:57:08 +01:00
Fabian Affolter 0d08004dc9 python310Packages.voluptuous-serialize: add changelog to meta
- disable on unsupported Python releases
- add myself as maintainer
- adjust inputs
2023-03-03 23:57:08 +01:00
Fabian Affolter b3aa738742 python310Packages.hahomematic: add orjson 2023-03-03 23:57:07 +01:00
Fabian Affolter 336e692f2a python310Packages.orjson: 3.8.4 -> 3.8.6
Diff: https://github.com/ijl/orjson/compare/refs/tags/3.8.4...3.8.6

Changelog: https://github.com/ijl/orjson/blob/3.8.6/CHANGELOG.md
2023-03-03 23:57:07 +01:00