Skip to content

Commit

Permalink
update dependencies and python 3.13 support
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyRacer1337 committed Oct 10, 2024
1 parent a583b78 commit cf8a20c
Show file tree
Hide file tree
Showing 9 changed files with 1,320 additions and 1,503 deletions.
9 changes: 0 additions & 9 deletions .eslintrc.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .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.9', '3.10', '3.11', '3.12' ]
python-version: [ '3.10', '3.11', '3.12', '3.13' ]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
7 changes: 7 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import globals from 'globals'
import pluginJs from '@eslint/js'

export default [
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
]
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"datatables.net": "^2.1.7",
"datatables.net-bs5": "^2.1.7",
"datatables.net": "^2.1.8",
"datatables.net-bs5": "^2.1.8",
"datatables.net-buttons": "^3.1.2",
"datatables.net-buttons-bs5": "^3.1.2",
"datatables.net-colreorder": "^2.0.4",
Expand All @@ -29,25 +29,25 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.11.1",
"eslint": "^9.12.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"file-loader": "^6.2.0",
"globals": "^15.11.0",
"html-minimizer-webpack-plugin": "^5.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.5",
"postcss-preset-env": "^10.0.7",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
"terser-webpack-plugin": "^5.3.10",
Expand Down
2,099 changes: 970 additions & 1,129 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

683 changes: 331 additions & 352 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = ["4c0d3r <4c0d3r@protonmail.com>"]
include = ["**/web/public/assets/**/*", "**/web/templates/**/*", "**/namer.cfg.default", "namer/tools/videohashes*"]

[tool.poetry.dependencies]
python = ">=3.9,<3.13"
python = ">=3.10,<3.14"
rapidfuzz = "^3.9"
watchdog = "^5.0"
pathvalidate = "^3.2"
Expand Down
1 change: 0 additions & 1 deletion src/js/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ export class Helpers {
static initTooltips (selector) {
const tooltips = selector.find('[data-bs-toggle="tooltip"]')
tooltips.each(function (index, element) {
// eslint-disable-next-line no-new
new Tooltip(element, {
boundary: selector[0]
})
Expand Down
2 changes: 1 addition & 1 deletion src/js/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// noinspection ES6UnusedImports
// eslint-disable-next-line no-unused-vars
import { Popover, Modal } from 'bootstrap'
import { Modal, Popover } from 'bootstrap'

import $ from 'jquery'
import 'datatables.net-bs5'
Expand Down

0 comments on commit cf8a20c

Please sign in to comment.