 Sandro JäckelandRobert Schütz
|
e59de77d77
|
python314Packages.devolo-plc-api: fix Python 3.14 compat
|
2026-03-08 11:30:40 -07:00 |
|
 Sandro JäckelandRobert Schütz
|
d856dc4ed3
|
python314Packages.pycec: fix Python 3.14 compat, modernize
|
2026-03-08 11:30:40 -07:00 |
|
 Sandro JäckelandRobert Schütz
|
70c484d621
|
python314Packages.aiohttp-sse: fix Python 3.14 compat
|
2026-03-08 11:30:40 -07:00 |
|
 Martin WeineltandRobert Schütz
|
1a5507d7b3
|
python3Packages.pyserial-asyncio-fast: fix 3.14 compat
|
2026-03-08 11:30:40 -07:00 |
|
 Sandro JäckelandRobert Schütz
|
6f2f470d98
|
python314Packages.praw: fix tests
|
2026-03-08 11:30:39 -07:00 |
|
Robert Schütz
|
aa802eaa2d
|
python314Packages.pyuptimerobot: 23.1.0 -> 24.0.1
Diff: https://github.com/ludeeus/pyuptimerobot/compare/23.1.0...24.0.1
Changelog: https://github.com/ludeeus/pyuptimerobot/releases/tag/24.0.1
|
2026-03-08 11:30:39 -07:00 |
|
 Sandro JäckelandRobert Schütz
|
f9a1423309
|
python313Packages.securetar: 2025.2.1 -> 2026.2.0
|
2026-03-08 11:30:39 -07:00 |
|
 Sandro JäckelandRobert Schütz
|
285ac3c8fc
|
python314Packages.snitun: fix test execution
see the Python 3.14 changelog for the breaking change to multiprocessing fork on linux per default
https://docs.python.org/3/whatsnew/3.14.html#:~:text=On%20Unix%20platforms%20other%20than%20macOS%2C%20%E2%80%98forkserver%E2%80%99%20is%20now%20the%20default%20start%20method%20for%20ProcessPoolExecutor%20(replacing%20%E2%80%98fork%E2%80%99).%20This%20change%20does%20not%20affect%20Windows%20or%20macOS%2C%20where%20%E2%80%98spawn%E2%80%99%20remains%20the%20default%20start%20method
Multiple tests failed with similar errors like:
_____________________________ test_peer_connection _____________________________ [gw0] linux -- Python 3.14.3 /nix/store/8gnchv834z56s561v3sx2h0ra1a2xn46-python3-3.14.3/bin/python3.14
test_server_sync = [<socket.socket fd=41, family=2, type=1, proto=0, laddr=('127.0.0.1', 8366), raddr=('127.0.0.1', 35672)>] test_client_sync = <socket.socket fd=33, family=2, type=1, proto=0, laddr=('127.0.0.1', 35672), raddr=('127.0.0.1', 8366)> event_loop = <_UnixSelectorEventLoop running=False closed=False debug=False>
def test_peer_connection(
test_server_sync: list[socket.socket],
test_client_sync: socket.socket,
event_loop: asyncio.AbstractEventLoop,
) -> None:
"""Run a full flow of with a peer."""
worker = ServerWorker(FERNET_TOKENS)
valid = datetime.now(tz=UTC) + timedelta(days=1)
aes_key = os.urandom(32)
aes_iv = os.urandom(16)
hostname = "localhost"
fernet_token = create_peer_config(valid.timestamp(), hostname, aes_key, aes_iv)
> worker.start()
tests/server/test_worker.py:43:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /nix/store/8gnchv834z56s561v3sx2h0ra1a2xn46-python3-3.14.3/lib/python3.14/multiprocessing/process.py:121: in start
self._popen = self._Popen(self)
^^^^^^^^^^^^^^^^^
/nix/store/8gnchv834z56s561v3sx2h0ra1a2xn46-python3-3.14.3/lib/python3.14/multiprocessing/context.py:224: in _Popen
return _default_context.get_context().Process._Popen(process_obj)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/nix/store/8gnchv834z56s561v3sx2h0ra1a2xn46-python3-3.14.3/lib/python3.14/multiprocessing/context.py:300: in _Popen
return Popen(process_obj)
^^^^^^^^^^^^^^^^^^
/nix/store/8gnchv834z56s561v3sx2h0ra1a2xn46-python3-3.14.3/lib/python3.14/multiprocessing/popen_forkserver.py:35: in __init__
super().__init__(process_obj)
/nix/store/8gnchv834z56s561v3sx2h0ra1a2xn46-python3-3.14.3/lib/python3.14/multiprocessing/popen_fork.py:20: in __init__
self._launch(process_obj)
/nix/store/8gnchv834z56s561v3sx2h0ra1a2xn46-python3-3.14.3/lib/python3.14/multiprocessing/popen_forkserver.py:47: in _launch
reduction.dump(process_obj, buf)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
obj = <ServerWorker name='ServerWorker-21' parent=272 initial> file = <_io.BytesIO object at 0x7fffef185c10>, protocol = None
def dump(obj, file, protocol=None):
'''Replacement for pickle.dump() using ForkingPickler.'''
> ForkingPickler(file, protocol).dump(obj)
E TypeError: cannot pickle 'weakref.ReferenceType' object
E when serializing dict item '_weakref'
E when serializing multiprocessing.util.Finalize state
E when serializing multiprocessing.util.Finalize object
E when serializing dict item 'finalizer'
E when serializing multiprocessing.popen_forkserver.Popen state
E when serializing multiprocessing.popen_forkserver.Popen object
E when serializing dict item '_popen'
E when serializing multiprocessing.context.ForkServerProcess state
E when serializing multiprocessing.context.ForkServerProcess object
E when serializing dict item '_process'
E when serializing multiprocessing.managers.SyncManager state
E when serializing multiprocessing.managers.SyncManager object
E when serializing dict item '_manager'
E when serializing snitun.server.worker.ServerWorker state
E when serializing snitun.server.worker.ServerWorker object
/nix/store/8gnchv834z56s561v3sx2h0ra1a2xn46-python3-3.14.3/lib/python3.14/multiprocessing/reduction.py:60: TypeError ---------------------------- Captured stderr setup ----------------------------- DEBUG:asyncio:Using selector: EpollSelector
------------------------------ Captured log setup ------------------------------
DEBUG asyncio:selector_events.py:64 Using selector: EpollSelector
|
2026-03-08 11:30:39 -07:00 |
|
 Martin WeineltandRobert Schütz
|
a8ad95943c
|
python3Packages.matter-python-client: init at 0.4.3
|
2026-03-08 11:30:39 -07:00 |
|
 Martin WeineltandRobert Schütz
|
4c701c5b87
|
python3Packages.home-assistant-chip-wheels: fix version metadata
|
2026-03-08 11:30:39 -07:00 |
|
Robert Schütz
|
de17467f58
|
python314Packages.aiohttp-cors: fix tests
|
2026-03-08 11:30:39 -07:00 |
|
Robert Schütz
|
7656a64fda
|
python3Packages.hass-nabucasa: 1.14.0 -> 1.15.0
Diff: https://github.com/nabucasa/hass-nabucasa/compare/1.14.0...1.15.0
Changelog: https://github.com/NabuCasa/hass-nabucasa/releases/tag/1.15.0
|
2026-03-08 11:30:39 -07:00 |
|
Robert Schütz
|
e1ccf38778
|
python3Packages.certbot: 5.2.2 -> 5.3.1
Diff: https://github.com/certbot/certbot/compare/v5.2.2...v5.3.1
Changelog: https://github.com/certbot/certbot/blob/v5.3.1/certbot/CHANGELOG.md
|
2026-03-08 11:30:38 -07:00 |
|
Robert Schütz
|
829bea0665
|
python3Packages.bumble: 0.0.223 -> 0.0.226
Diff: https://github.com/google/bumble/compare/v0.0.223...v0.0.226
Changelog: https://github.com/google/bumble/releases/tag/v0.0.226
|
2026-03-08 11:30:38 -07:00 |
|
Robert Schütz
|
260df68cc5
|
python3Packages.aioamazondevices: 12.0.1 -> 13.0.0
Diff: https://github.com/chemelli74/aioamazondevices/compare/v12.0.1...v13.0.0
Changelog: https://github.com/chemelli74/aioamazondevices/blob/v13.0.0/CHANGELOG.md
|
2026-03-08 11:30:38 -07:00 |
|
 K900andGitHub
|
d25af2edd6
|
protobuf: add python3Packages.celery to passthru.tests (#497972)
|
2026-03-08 18:03:08 +00:00 |
|
 nixpkgs-ci[bot]andGitHub
|
ebc3907e25
|
Merge master into staging-next
|
2026-03-08 18:06:55 +00:00 |
|
Gaetan Lepage
|
d724f20060
|
protobuf: add python3Packages.celery to passthru.tests
|
2026-03-08 17:58:04 +00:00 |
|
 Gaétan LepageandGitHub
|
df6c2ecdae
|
presenterm: Drop Sixel dependency (#491385)
|
2026-03-08 17:53:02 +00:00 |
|
 YurekaandGitHub
|
8102001e99
|
arm-trusted-firmware: 2.13.0 -> 2.14.0 (#490009)
|
2026-03-08 17:45:47 +00:00 |
|
 K900andGitHub
|
3657eddc63
|
home-assistant: fix tests with PyJWT 2.11.0 (#497956)
|
2026-03-08 17:43:49 +00:00 |
|
 K900andGitHub
|
a7fc7ccb2e
|
python3Packages.googleapis-common-protos: 3.31.3 -> 1.73.0 (#497944)
|
2026-03-08 17:43:36 +00:00 |
|
 dotlambdaandGitHub
|
ce6582e170
|
python3Packages.protoletariat: mark broken (#496795)
|
2026-03-08 17:42:58 +00:00 |
|
 dotlambdaandGitHub
|
d8e78b04db
|
bitwarden-cli: 2026.1.0 -> 2026.2.0 (#496989)
|
2026-03-08 17:42:54 +00:00 |
|
 Doron BeharandGitHub
|
a1082302d1
|
kdePackages.qtutilities: 6.19.1 -> 6.20.0 (#497510)
|
2026-03-08 17:42:12 +00:00 |
|
 Doron BeharandGitHub
|
6009532428
|
cpp-utilities: 5.32.1 -> 5.33.0 (#497601)
|
2026-03-08 17:40:48 +00:00 |
|
 Gaétan LepageandGitHub
|
189f51a413
|
faiss: fix hash (#497905)
|
2026-03-08 17:39:09 +00:00 |
|
 Pol DellaieraandGitHub
|
15d7ec4d5b
|
open-webui: 0.8.8-> 0.8.9 (#497902)
|
2026-03-08 17:35:20 +00:00 |
|
 Alexandre EstevesandGitHub
|
f8f1650fce
|
wasmtime: 41.0.3 -> 42.0.1 (#495470)
|
2026-03-08 17:17:33 +00:00 |
|
Robert Schütz
|
657c174a5c
|
home-assistant: fix tests with PyJWT 2.11.0
|
2026-03-08 10:12:33 -07:00 |
|
 Michael DanielsandGitHub
|
22e2bf7717
|
python3Packages.python-gitlab: 7.1.0 -> 8.1.0 (#449872)
|
2026-03-08 16:57:40 +00:00 |
|
 SandroandGitHub
|
fc3965fd8b
|
home-assistant-custom-components.alphaess: ini at 0.7.3 (#476619)
|
2026-03-08 16:51:15 +00:00 |
|
 SandroandGitHub
|
25a3452d36
|
tuxbox: init at 3.0.1 (#490382)
|
2026-03-08 16:46:40 +00:00 |
|
 dotlambdaandGitHub
|
0ea2bfd9c0
|
python3Packages.onedrive-personal-sdk: 0.1.4 -> 0.1.5 (#497941)
|
2026-03-08 16:39:16 +00:00 |
|
 SandroandGitHub
|
05a2da8089
|
golangci-lint: 2.11.0 -> 2.11.2 (#497834)
|
2026-03-08 16:34:19 +00:00 |
|
 SandroandGitHub
|
ae7ce6df5f
|
python3Packages.python-troveclient: 8.9.0 -> 8.10.0 (#497172)
|
2026-03-08 16:32:09 +00:00 |
|
 dishandGitHub
|
5de717d1f4
|
goresym: 3.2 -> 3.3 (#497874)
|
2026-03-08 16:29:20 +00:00 |
|
Robert Schütz
|
a227ae9f38
|
python3Packages.googleapis-common-protos: unpin protobuf
|
2026-03-08 09:26:08 -07:00 |
|
Robert Schütz
|
f4a2860215
|
python3Packages.googleapis-common-protos: 1.70.0 -> 1.73.0
Diff: https://github.com/googleapis/google-cloud-python/compare/googleapis-common-protos-v1.70.0...googleapis-common-protos-v1.73.0
Changelog: https://github.com/googleapis/python-api-common-protos/releases/tag/googleapis-common-protos-v1.73.0
|
2026-03-08 09:26:08 -07:00 |
|
Robert Schütz
|
8ada3378a5
|
Revert "python3Packages.googleapis-common-protos: 1.70.0 -> 3.31.3"
This reverts commit 8509e9927a because it
picked a tag from a different project.
|
2026-03-08 09:26:08 -07:00 |
|
K900
|
972f98b1b3
|
telegram-desktop: build with minizip-ng
Somehow breaks with updated minizip.
|
2026-03-08 19:23:26 +03:00 |
|
 SandroandGitHub
|
a1db1ee6d5
|
qemu: move to pkgs/by-name (#456129)
|
2026-03-08 16:22:00 +00:00 |
|
Philipp Fruck
|
4ae915c901
|
presenterm: Remove sixel feature
Sixel is now enabled by default and implemented using `icy_sixel` crate
|
2026-03-08 17:21:01 +01:00 |
|
K900
|
b950e5a586
|
python313Packages.protobuf6: fix build
|
2026-03-08 19:20:43 +03:00 |
|
 RamsesandGitHub
|
8ccb3c0e47
|
iroh-ssh: init at 0.2.9 (#488529)
|
2026-03-08 16:20:18 +00:00 |
|
 nixpkgs-ci[bot]andGitHub
|
0f2394592b
|
efm-langserver: 0.0.55 -> 0.0.56 (#497773)
|
2026-03-08 16:10:02 +00:00 |
|
Robert Schütz
|
39449a8df7
|
python3Packages.onedrive-personal-sdk: 0.1.4 -> 0.1.5
Diff: https://github.com/zweckj/onedrive-personal-sdk/compare/v0.1.4...v0.1.5
Changelog: https://github.com/zweckj/onedrive-personal-sdk/releases/tag/v0.1.5
|
2026-03-08 09:09:52 -07:00 |
|
 dotlambdaandGitHub
|
b35631d33e
|
python3Packages.evdev: 1.9.2 -> 1.9.3 (#488222)
|
2026-03-08 16:08:54 +00:00 |
|
r-vdp
|
2e894335cd
|
iroh-ssh: add rvdp to maintainers
|
2026-03-08 17:02:39 +01:00 |
|
 AnthonyandGitHub
|
82e8821a0b
|
protonvpn-gui: 4.14.1 -> 4.14.2 (#496941)
|
2026-03-08 15:58:31 +00:00 |
|