Skip to content

Commit

Permalink
Merge branch 'master' into feature/progress_bar_type
Browse files Browse the repository at this point in the history
  • Loading branch information
mortacious authored May 22, 2023
2 parents bd00fc4 + bcfef50 commit a18b37d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion numba_progress/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.0.0"
4 changes: 3 additions & 1 deletion numba_progress/progress.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import numba as nb
import numpy as np
import sys
from tqdm import tqdm, tqdm_notebook
from tqdm import tqdm
from tqdm.notebook import tqdm as tqdm_notebook

from threading import Thread, Event

from numba.extending import overload_method, typeof_impl, as_numba_type, models, register_model, \
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,12 @@ def import_module_from_path(path):
],
license="MIT",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
Expand Down

0 comments on commit a18b37d

Please sign in to comment.