Skip to content

Commit

Permalink
updates version
Browse files Browse the repository at this point in the history
  • Loading branch information
namiyousef committed Apr 18, 2022
1 parent 6661b55 commit 8afb395
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion argminer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import argminer

__version__ = '0.0.16'

__version__ = '0.0.17'
1 change: 1 addition & 0 deletions argminer/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ def from_json(self, status='postprocessed'):
return self

def save_json(self, dir_path=''):
print("THIS BETTER SHOW")
# TODO maybe add option for custom file name?
filename = f'{self.__class__.__name__.split("Processor")[0]}_{self.status}.json'
path = os.path.join(dir_path, filename)
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,13 @@ def get_version(rel_path):
'matplotlib',
#'colab-dev-tools@git+https://[email protected]/namiyousef/colab-utils.git',
'mlutils@git+https://[email protected]/namiyousef/ml-utils.git@develop',
'connexion[swagger-ui]'
#'pip install torch==1.7.1+cu101 torchvision==0.8.2+cu101 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html'
],
#package_data={}
packages=find_packages(exclude=('tests*', 'experiments*')),
license='MIT',
#entry_points=(),
entry_points={
'console_scripts': ['argminer-api=argminer.run_api:main'],
}
)

0 comments on commit 8afb395

Please sign in to comment.