Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrespoae committed May 12, 2024
1 parent 6c27d93 commit 8fa1610
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ ifeq ($(OS),Windows_NT)
if exist build $(RMDIR) build
if exist dist $(RMDIR) dist
if exist tempit.egg-info $(RMDIR) tempit.egg-info
pipenv --rm
if exist .venv $(RMDIR) .venv

else
$(RMDIR) build
$(RMDIR) dist
$(RMDIR) tempit.egg-info
pipenv --rm
$(RMDIR) .venv
endif

upload_pypi: clean install test build check
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

VERSION = "0.1.2"
VERSION = "0.1.3"
setup(
name="tempit",
version=VERSION,
Expand All @@ -12,6 +12,7 @@
long_description_content_type="text/markdown",
url="https://github.com/mcrespoae/tempit",
install_requires=["joblib"],
setup_requires=["joblib"],
python_requires=">=3.8",
keywords=["tempit", "time", "decorator", "performance", "concurrency", "parallel", "benchmark"],
classifiers=[
Expand Down

0 comments on commit 8fa1610

Please sign in to comment.