Skip to content

Commit

Permalink
added inflection to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
crimson206 committed Jun 27, 2024
1 parent f5a8ea6 commit 671b3ac
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install flake8
pip install setuptools wheel
pip install -r requirements.txt
pip install -r requirements_text.txt
pip install .
- name: Lint with flake8
run: |
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "crimson-auto-pydantic"
version = "0.1.0"
version = "0.1.1"
description = "Template Tools"
readme = "README.md"
authors = [
Expand All @@ -23,7 +23,8 @@ classifiers = [
dependencies = [
"pydantic",
"crimson-code-extractor",
"crimson-ast-dev-tool"
"crimson-ast-dev-tool",
"inflection"
]
requires-python = ">=3.9"

Expand Down
7 changes: 2 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
inflection
jinja2
pydantic
crimson-code-extractor
crimson-ast-dev-tool
crimson-file-loader
pytest
pytest-cov
inflection
Empty file added requirements_dev.txt
Empty file.
2 changes: 2 additions & 0 deletions requirements_test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pytest
pytest-cov

0 comments on commit 671b3ac

Please sign in to comment.