Skip to content
Draft
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
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ authors = [
]
description = "Synthesizing realistic and diverse text-datasets from augmented LLMs."
readme = "README.md"
requires-python = ">=3.11"
requires-python = ">=3.11.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license-files = ["LICENSE"]
dependencies = [
"bears[all]",
"fmcore[all]",
]

Expand Down Expand Up @@ -52,7 +53,6 @@ ignore = [
"E731", # lambda-assignment: https://docs.astral.sh/ruff/rules/lambda-assignment/
"E741", # ambiguous-variable-name: https://docs.astral.sh/ruff/rules/ambiguous-variable-name/

## Ignored because of bad interaction with `from typing import *`
"F405", # undefined-local-with-import-star-usage: https://docs.astral.sh/ruff/rules/undefined-local-with-import-star-usage/
"F403", # undefined-local-with-import-star: https://docs.astral.sh/ruff/rules/undefined-local-with-import-star/
## Ignored because it causes no harm (and is needed sometimes):
"F841", # unused-variable: https://docs.astral.sh/ruff/rules/unused-variable/
]
286 changes: 0 additions & 286 deletions requirements.txt

This file was deleted.

1 change: 1 addition & 0 deletions src/synthesizrr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## Import in dependency order:
_LIBRARY_NAME: str = 'synthesizrr'
import synthesizrr.data
import synthesizrr.common
import synthesizrr.generation
Expand Down
Loading
Loading