File tree Expand file tree Collapse file tree 7 files changed +14
-14
lines changed
Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LABEL org.opencontainers.image.title="darc" \
44 org.opencontainers.image.description="Darkweb Crawler Project" \
55 org.opencontainers.image.url="https://darc.jarryshaw.me/" \
66 org.opencontainers.image.source="https://github.com/JarryShaw/darc" \
7- org.opencontainers.image.version="1.0.0 " \
7+ org.opencontainers.image.version="1.0.1 " \
88 org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
99
1010STOPSIGNAL SIGINT
Original file line number Diff line number Diff line change 3535"""
3636
3737from darc .process import process as darc
38- from darc .process import register as register_hooks # pylint: disable=unused-import
39- from darc .proxy import register as register_proxy # pylint: disable=unused-import
40- from darc .signal import register as register_signal # pylint: disable=unused-import
41- from darc .sites import register as register_sites # pylint: disable=unused-import
38+ from darc .process import register as register_hooks # pylint: disable=unused-import # noqa: F401
39+ from darc .proxy import register as register_proxy # pylint: disable=unused-import # noqa: F401
40+ from darc .signal import register as register_signal # pylint: disable=unused-import # noqa: F401
41+ from darc .sites import register as register_sites # pylint: disable=unused-import # noqa: F401
4242
4343__all__ = ['darc' ]
44- __version__ = '1.0.0 '
44+ __version__ = '1.0.1 '
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ LABEL org.opencontainers.image.title="darc" \
1515 org.opencontainers.image.description="Darkweb Crawler Project" \
1616 org.opencontainers.image.url="https://darc.jarryshaw.me/" \
1717 org.opencontainers.image.source="https://github.com/JarryShaw/darc" \
18- org.opencontainers.image.version="1.0.0 " \
18+ org.opencontainers.image.version="1.0.1 " \
1919 org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
2020# EXPOSE 9050
2121
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LABEL org.opencontainers.image.title="darc" \
44 org.opencontainers.image.description="Darkweb Crawler Project" \
55 org.opencontainers.image.url="https://darc.jarryshaw.me/" \
66 org.opencontainers.image.source="https://github.com/JarryShaw/darc" \
7- org.opencontainers.image.version="1.0.0 " \
7+ org.opencontainers.image.version="1.0.1 " \
88 org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
99
1010STOPSIGNAL SIGINT
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ LABEL org.opencontainers.image.title="darc" \
1515 org.opencontainers.image.description="Darkweb Crawler Project" \
1616 org.opencontainers.image.url="https://darc.jarryshaw.me/" \
1717 org.opencontainers.image.source="https://github.com/JarryShaw/darc" \
18- org.opencontainers.image.version="1.0.0 " \
18+ org.opencontainers.image.version="1.0.1 " \
1919 org.opencontainers.image.licenses='BSD 3-Clause "New" or "Revised" License'
2020# EXPOSE 9050
2121
Original file line number Diff line number Diff line change 3737author = 'Jarry Shaw'
3838
3939# The full version, including alpha/beta/rc tags
40- release = '1.0.0 '
40+ release = '1.0.1 '
4141
4242
4343# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 2626version_info = sys .version_info [:2 ]
2727
2828# version string
29- __version__ = '1.0.0 '
29+ __version__ = '1.0.1 '
3030
3131# setup attributes
3232attrs = dict (
152152 # zip_safe=True,
153153 ))
154154except ImportError :
155- from distutils .core import setup
156- from distutils .command .build_py import build_py
155+ from distutils .core import setup # type: ignore[no-redef]
156+ from distutils .command .build_py import build_py # type: ignore[no-redef]
157157
158158
159159class build (build_py ):
@@ -175,4 +175,4 @@ def run(self): # type: ignore[no-untyped-def]
175175# set-up script for pip distribution
176176setup (cmdclass = {
177177 'build_py' : build ,
178- }, ** attrs )
178+ }, ** attrs ) # type: ignore[arg-type]
You can’t perform that action at this time.
0 commit comments