Skip to content

Commit

Permalink
chore: release new version (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
blinjrm authored Aug 6, 2023
1 parent 0dcc1dc commit 68e1cc7
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 43 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
Expand Down
82 changes: 41 additions & 41 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tool.poetry]
name = "detection_datasets"
version = "0.3.5"
version = "0.3.6"
description = "Easily load and transform datasets for object detection"
authors = ["Jerome Blin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/blinjrm/detection-dataset"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [{ include = "detection_datasets", from = "src" }]

Expand Down Expand Up @@ -58,43 +58,43 @@ line-length = 120
src = ['src']
target-version = "py37"
select = [
'A', # flake8-builtins
# "ANN", # flake8-annotations
'B', # flake8-bugbear
'C', # flake8-comprehensions
'D', # pydocstyle
"E", # pycodestyle errors
"F", # pyflakes
'I', # isort
'M',
'N', # pep8-naming
'Q', # flake8-quotes
'S', # flake8-bandit
'T', # flake8-print
'U', # pyupgrade
"W", # pycodestyle warnings
'A', # flake8-builtins
# "ANN", # flake8-annotations
'B', # flake8-bugbear
'C', # flake8-comprehensions
'D', # pydocstyle
"E", # pycodestyle errors
"F", # pyflakes
'I', # isort
'M',
'N', # pep8-naming
'Q', # flake8-quotes
'S', # flake8-bandit
'T', # flake8-print
'U', # pyupgrade
"W", # pycodestyle warnings
]
extend-ignore = [
'A003',
'ANN101',
'D100',
'D101',
'D102',
'D105',
'D107',
'D202',
"D203",
"D204",
"D213",
"D215",
"D400",
"D404",
"D406",
"D407",
"D408",
"D409",
"D413",
'F401',
'S101',
'T201',
'A003',
'ANN101',
'D100',
'D101',
'D102',
'D105',
'D107',
'D202',
"D203",
"D204",
"D213",
"D215",
"D400",
"D404",
"D406",
"D407",
"D408",
"D409",
"D413",
'F401',
'S101',
'T201',
]
2 changes: 1 addition & 1 deletion src/detection_datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
from detection_datasets.detection_dataset import DetectionDataset
from detection_datasets.utils.hub import available_in_hub

__version__ = "0.3.5"
__version__ = "0.3.6"

__all__ = [Bbox, DetectionDataset, available_in_hub]

0 comments on commit 68e1cc7

Please sign in to comment.