Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
python-version: [ '3.11', '3.12', '3.13', '3.14-dev' ]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: '2.1.1'
poetry-version: '2.1.4'

- name: Install Go
uses: actions/setup-go@v5
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: '2.1.1'
poetry-version: '2.1.4'

- uses: pnpm/action-setup@v3
with:
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
- name: install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: '2.1.1'
poetry-version: '2.1.4'

- name: create tag from pyproject version on change.
id: auto-tag
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: '2.1.1'
poetry-version: '2.1.4'

- name: Install Go
uses: actions/setup-go@v5
Expand Down
4 changes: 2 additions & 2 deletions namer/web/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,10 @@ def default(obj):
if isinstance(obj, (numpy.int_, numpy.intc, numpy.intp, numpy.int8, numpy.int16, numpy.int32, numpy.int64, numpy.uint8, numpy.uint16, numpy.uint32, numpy.uint64)):
return int(obj)

elif isinstance(obj, (numpy.float_, numpy.float16, numpy.float32, numpy.float64)):
elif isinstance(obj, (numpy.float16, numpy.float32, numpy.float64)):
return float(obj)

elif isinstance(obj, (numpy.complex_, numpy.complex64, numpy.complex128)):
elif isinstance(obj, (numpy.complex64, numpy.complex128)):
return {
'real': obj.real,
'imag': obj.imag
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,45 +13,45 @@
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.7",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"datatables.net": "^2.3.2",
"datatables.net-bs5": "^2.3.2",
"datatables.net": "^2.3.3",
"datatables.net-bs5": "^2.3.3",
"datatables.net-buttons": "^3.2.4",
"datatables.net-buttons-bs5": "^3.2.4",
"datatables.net-colreorder": "^2.1.1",
"datatables.net-colreorder-bs5": "^2.1.1",
"datatables.net-fixedheader": "^4.0.3",
"datatables.net-fixedheader-bs5": "^4.0.3",
"datatables.net-responsive": "^3.0.5",
"datatables.net-responsive-bs5": "^3.0.5",
"datatables.net-responsive": "^3.0.6",
"datatables.net-responsive-bs5": "^3.0.6",
"jquery": "^3.7.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.30.1",
"@eslint/js": "^9.34.0",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"eslint": "^9.30.1",
"eslint": "^9.34.0",
"eslint-config-standard": "^17.1.0",
"file-loader": "^6.2.0",
"globals": "^16.3.0",
"html-minimizer-webpack-plugin": "^5.0.2",
"html-minimizer-webpack-plugin": "^5.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"mini-css-extract-plugin": "^2.9.2",
"lint-staged": "^16.1.5",
"mini-css-extract-plugin": "^2.9.4",
"postcss": "^8.5.6",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.2.4",
"sass": "^1.89.2",
"postcss-preset-env": "^10.3.1",
"sass": "^1.91.0",
"sass-loader": "^16.0.5",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.100.0",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"engines": {
Expand Down
Loading
Loading