Skip to content

Commit

Permalink
loosen pip deps (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
vicentebolea authored Dec 11, 2023
1 parent 87b18a1 commit df54c9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: ubuntu-latest-tests-python${{ matrix.python-version}}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ dependencies = [
"smqtk-detection[torch,centernet]==0.20.0",
"smqtk-image-io==0.17.1",
"timm",
"torch==1.11",
"torchvision==0.12",
"torch",
"torchvision",
"trame",
"trame-client>=2.11.2",
"trame-plotly",
Expand All @@ -60,7 +60,7 @@ dev = [
]

[tool.setuptools]
packages= [ "nrtk_explorer"]
packages= ["nrtk_explorer"]

[project.scripts]
nrtk_explorer = "nrtk_explorer.app:main"
Expand All @@ -69,7 +69,7 @@ nrtk_explorer_tranforms = "nrtk_explorer.app.transforms:transforms"

[tool.black]
line-length = 99
target-version = ['py38', 'py39', 'py310']
target-version = ['py39', 'py310', 'py311']
include = '''
\.pyi?$
'''
Expand Down

0 comments on commit df54c9c

Please sign in to comment.