Skip to content

Commit 3b7de53

Browse files
terapyonterapyon
authored andcommitted
a bit change for requirement and more
1 parent 93fcacf commit 3b7de53

File tree

4 files changed

+6
-35
lines changed

4 files changed

+6
-35
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: main
66
pull_request:
7-
branches: "*"
7+
branches: '*'
88

99
jobs:
1010
build:
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, windows-latest, macos-latest]
16-
python-version: ["3.7", "3.10"]
16+
python-version: ['3.10', '3.11', '3.12', '3.13']
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v2

LICENSE.txt

Lines changed: 0 additions & 27 deletions
This file was deleted.

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
include LICENSE.txt
1+
include LICENSE
22
include README.md
33

44
include setup.py

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ build-backend = "hatchling.build"
1010
name = "net_vis"
1111
description = "NetVis is a package for interactive visualization Python NetworkX graphs within Jupyter Lab. It leverages D3.js for dynamic rendering and supports HTML export, making network analysis effortless."
1212
readme = "README.md"
13-
license = { file = "LICENSE.txt" }
14-
requires-python = ">=3.9"
13+
license = { file = "LICENSE" }
14+
requires-python = ">=3.10"
1515
authors = [
1616
{ name = "Manabu TERADA", email = "[email protected]" },
1717
]
@@ -27,12 +27,10 @@ classifiers = [
2727
"License :: OSI Approved :: BSD License",
2828
"Programming Language :: Python",
2929
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.7",
31-
"Programming Language :: Python :: 3.8",
32-
"Programming Language :: Python :: 3.9",
3330
"Programming Language :: Python :: 3.10",
3431
"Programming Language :: Python :: 3.11",
3532
"Programming Language :: Python :: 3.12",
33+
"Programming Language :: Python :: 3.13",
3634
]
3735
dependencies = [
3836
"ipywidgets>=8.0.0",

0 commit comments

Comments
 (0)