diff --git a/Makefile b/Makefile index 94c41c0..10f1eeb 100644 --- a/Makefile +++ b/Makefile @@ -13,4 +13,4 @@ clean: rm dist/ build/ -rfv push: - python3 -m twine upload --skip-existing --repository testpypi dist/* + python3 -m twine upload --skip-existing dist/* diff --git a/setup.cfg b/setup.cfg index 955da00..8e0a519 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = fear-and-greed -version = 0.11 +version = 0.1 author = Víctor Terrón author_email = quintanar@gmail.com description = Python wrapper for CNN Fear & Greed Index. diff --git a/src/fear_and_greed/__init__.py b/src/fear_and_greed/__init__.py index f31f837..ae68f38 100644 --- a/src/fear_and_greed/__init__.py +++ b/src/fear_and_greed/__init__.py @@ -1,3 +1,3 @@ from .cnn import FearGreedIndex, get -__version__ = "0.11" +__version__ = "0.1"