Skip to content

Commit

Permalink
[brief] Adds a new sub-type for pyro to handle CI.
Browse files Browse the repository at this point in the history
[detailed]
- It's almost identical to dev, but it skips the pre-commit hooks.
  • Loading branch information
marovira committed Mar 24, 2024
1 parent 5a4a4f6 commit 8e90bdb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ dev = [
"types-Pillow==10.2.0.20240311"
]

ci = [
"mypy==1.8.0",
"ruff==0.3.4",
"pytest==8.1.1",
"types-Pillow==10.2.0.20240311"
]

[tool.setuptools_scm]

[tool.setuptools.packages.find]
Expand Down
11 changes: 11 additions & 0 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Generated via tools/generate_requirements.py and pre-commit hook.
# Do not edit this file; modify pyproject.toml instead.
mypy==1.8.0
opencv-python==4.9.0.80
pytest==8.1.1
ruff==0.3.4
tensorboard==2.16.2
torch==2.2.1
torchvision==0.17.1
tqdm==4.66.2
types-Pillow==10.2.0.20240311

0 comments on commit 8e90bdb

Please sign in to comment.