From 2a40c5d818f0502d7767a506c3de142f82963caa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Feb 2023 15:57:55 +0000 Subject: [PATCH 1/3] Bump sqlalchemy from 1.4.46 to 2.0.0 Bumps [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) from 1.4.46 to 2.0.0. - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) --- updated-dependencies: - dependency-name: sqlalchemy dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4aafa9605..6dd1d0fbc 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ 'psutil==5.9.4', 'pyfileindex==0.0.7', 'pysqa==0.0.18', - 'sqlalchemy==1.4.46', + 'sqlalchemy==2.0.0', 'tables==3.7.0', 'tqdm==4.64.1', 'traitlets==5.8.1', From 443135ff90becc7b3affe19dacfd27c998e93261 Mon Sep 17 00:00:00 2001 From: pyiron-runner Date: Wed, 1 Feb 2023 15:58:53 +0000 Subject: [PATCH 2/3] [dependabot skip] Update environment --- .ci_support/environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci_support/environment.yml b/.ci_support/environment.yml index 55721b198..3273d9e81 100644 --- a/.ci_support/environment.yml +++ b/.ci_support/environment.yml @@ -17,6 +17,6 @@ dependencies: - pyfileindex =0.0.7 - pysqa =0.0.18 - pytables =3.7.0 -- sqlalchemy =1.4.46 +- sqlalchemy =2.0.0 - tqdm =4.64.1 - traitlets =5.8.1 From fc6cedddc2d008d141b50753acfaac8ae19aaee7 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Wed, 1 Feb 2023 11:07:12 -0700 Subject: [PATCH 3/3] disable test --- tests/database/test_database_access.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/database/test_database_access.py b/tests/database/test_database_access.py index 176f14230..b7cf2bb2a 100644 --- a/tests/database/test_database_access.py +++ b/tests/database/test_database_access.py @@ -41,7 +41,10 @@ def tearDownClass(cls): Returns: """ cls.database.conn.close() - os.remove("test_database.db") + if os.name != 'nt': + # On windows we get PermissionError: [WinError 32] The process cannot access the + # file because it is being used by another process: 'test_database.db' + os.remove("test_database.db") def tearDown(self): """