JeffYang52415 commited on
Commit
6ccf9e8
·
unverified ·
1 Parent(s): 6691caf

chore: update pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +11 -2
pyproject.toml CHANGED
@@ -21,9 +21,10 @@ python = ">=3.11"
21
  pandas = "^2.0.3"
22
  datasets = "^2.14.4"
23
  typing-extensions = "^4.8.0"
 
24
 
25
  [tool.poetry.group.dev.dependencies]
26
- pytest = "^7.4.0"
27
  black = { version = "^23.9.1", allow-prereleases = true }
28
  flake8 = "^6.1.0"
29
  isort = "^5.12.0"
@@ -34,7 +35,6 @@ ipykernel = "^6.7.0"
34
 
35
  [tool.black]
36
  line-length = 88
37
- target-version = ["py311"]
38
  exclude = """
39
  /(
40
  \\.git
@@ -55,6 +55,15 @@ line-length = 88
55
  select = ["E", "F"] # or specify checks explicitly without E501
56
  ignore = ["E501"]
57
 
 
 
 
 
58
  [build-system]
59
  requires = ["poetry-core>=1.5.0"]
60
  build-backend = "poetry.core.masonry.api"
 
 
 
 
 
 
21
  pandas = "^2.0.3"
22
  datasets = "^2.14.4"
23
  typing-extensions = "^4.8.0"
24
+ ipywidgets = "^8.1.1"
25
 
26
  [tool.poetry.group.dev.dependencies]
27
+ pytest = "^7.0.0"
28
  black = { version = "^23.9.1", allow-prereleases = true }
29
  flake8 = "^6.1.0"
30
  isort = "^5.12.0"
 
35
 
36
  [tool.black]
37
  line-length = 88
 
38
  exclude = """
39
  /(
40
  \\.git
 
55
  select = ["E", "F"] # or specify checks explicitly without E501
56
  ignore = ["E501"]
57
 
58
+ [tool.ruff.lint]
59
+ ignore = ["E501"]
60
+ select = ["E", "F", "I"]
61
+
62
  [build-system]
63
  requires = ["poetry-core>=1.5.0"]
64
  build-backend = "poetry.core.masonry.api"
65
+
66
+ [tool.pytest.ini_options]
67
+ markers = [
68
+ "integration: marks tests as integration tests (deselect with '-m \"not integration\"')"
69
+ ]