Skip to content

Commit f9f7aca

Browse files
authored
Merge pull request #228 from neo4j/build
Build fixes
2 parents 59d98bc + 98c0bca commit f9f7aca

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/snowflake-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
SNOWFLAKE_PASSWORD: ${{ secrets.SNOWFLAKE_PASSWORD }}
4646
SNOWFLAKE_ROLE: ACCOUNTADMIN
4747
SNOWFLAKE_WAREHOUSE: ${{ secrets.SNOWFLAKE_WAREHOUSE }}
48-
run: pytest tests/ --include-snowflake -W "ignore:Python Runtime 3.9 reached its End-Of-Life:DeprecationWarning"
48+
run: pytest tests/ --include-snowflake

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
os: [ubuntu-latest]
26-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
26+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2727

2828
defaults:
2929
run:
@@ -45,4 +45,4 @@ jobs:
4545
- run: pip install ".[snowflake]"
4646

4747
- name: Run tests
48-
run: pytest tests/ -W "ignore:Python Runtime 3.9 reached its End-Of-Life:DeprecationWarning"
48+
run: pytest tests/

python-wrapper/pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=61.0.0", "wheel"]
2+
requires = ["setuptools>=77.0.3", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -8,17 +8,16 @@ version = "0.5.1"
88
description = "A simple graph visualization tool"
99
readme = "README.md"
1010
authors = [{ name = "Neo4j", email = "[email protected]" }]
11-
license = { file = "LICENSE" }
11+
license = "GPL-3.0-only"
12+
license-files = [ "LICENSE" ]
1213
classifiers = [
1314
"Development Status :: 3 - Alpha",
1415
"Intended Audience :: Developers",
1516
"Intended Audience :: Science/Research",
16-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
1717
"Operating System :: OS Independent",
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
2020
"Programming Language :: Python :: 3 :: Only",
21-
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",
@@ -36,7 +35,7 @@ dependencies = [
3635
"pydantic-extra-types >=2, <3",
3736
"enum-tools==0.12.0"
3837
]
39-
requires-python = ">=3.9"
38+
requires-python = ">=3.10"
4039

4140

4241
[project.optional-dependencies]

0 commit comments

Comments
 (0)