From 1291df30298c580dae49aa190469713e94424b5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 14:22:50 +0000 Subject: [PATCH 1/2] Bump aiohttp from 3.8.6 to 3.9.1 Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.8.6 to 3.9.1. - [Release notes](https://github.com/aio-libs/aiohttp/releases) - [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst) - [Commits](https://github.com/aio-libs/aiohttp/compare/v3.8.6...v3.9.1) --- updated-dependencies: - dependency-name: aiohttp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c84e7ca..b3de85a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ requires-python = ">=3.8, <3.12" dependencies = [ - "aiohttp==3.8.6", + "aiohttp==3.9.1", "pyserial==3.5", "python-socketio==5.10.0", "pythonnet==3.0.3", From 9065dfbb08510662d449083462c19459595a87fe Mon Sep 17 00:00:00 2001 From: Kenneth Yang Date: Tue, 28 Nov 2023 13:45:58 -0800 Subject: [PATCH 2/2] Verified 3.12 compatibility, bump version requirements --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a4af426..b5bf3bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ephys-link" -version = "0.9.18rc2" +version = "1.0.0a1" license = { file = "LICENSE" } authors = [{ name = "Kenneth Yang", email = "kjy5@uw.edu" }] @@ -24,7 +24,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Medical Science Apps.", ] -requires-python = ">=3.8, <3.12" +requires-python = ">=3.8, <3.13" dependencies = [ "aiohttp==3.9.1", "pyserial==3.5",