From 99700bd5a149f711e6c80c51b913a61a7f020aee Mon Sep 17 00:00:00 2001 From: Matt Krueger Date: Tue, 18 Apr 2023 17:55:37 -0500 Subject: [PATCH 1/3] renamed module --- make/common.mk | 1 + pyproject.toml | 2 +- {etherscan => rstms_etherscan_python}/__init__.py | 0 .../configs/GOERLI-stable.json | 0 {etherscan => rstms_etherscan_python}/configs/KOVAN-stable.json | 0 {etherscan => rstms_etherscan_python}/configs/MAIN-stable.json | 0 .../configs/RINKEBY-stable.json | 0 .../configs/ROPSTEN-stable.json | 0 {etherscan => rstms_etherscan_python}/configs/__init__.py | 0 {etherscan => rstms_etherscan_python}/enums/__init__.py | 0 {etherscan => rstms_etherscan_python}/enums/actions_enum.py | 0 {etherscan => rstms_etherscan_python}/enums/fields_enum.py | 0 {etherscan => rstms_etherscan_python}/enums/modules_enum.py | 0 {etherscan => rstms_etherscan_python}/enums/tags_enum.py | 0 {etherscan => rstms_etherscan_python}/etherscan.py | 0 {etherscan => rstms_etherscan_python}/modules/__init__.py | 0 {etherscan => rstms_etherscan_python}/modules/accounts.py | 0 {etherscan => rstms_etherscan_python}/modules/blocks.py | 0 {etherscan => rstms_etherscan_python}/modules/contracts.py | 0 {etherscan => rstms_etherscan_python}/modules/gastracker.py | 0 {etherscan => rstms_etherscan_python}/modules/pro.py | 0 {etherscan => rstms_etherscan_python}/modules/proxy.py | 0 {etherscan => rstms_etherscan_python}/modules/stats.py | 0 {etherscan => rstms_etherscan_python}/modules/tokens.py | 0 {etherscan => rstms_etherscan_python}/modules/transactions.py | 0 {etherscan => rstms_etherscan_python}/utils/__init__.py | 0 {etherscan => rstms_etherscan_python}/utils/conversions.py | 0 {etherscan => rstms_etherscan_python}/utils/parsing.py | 0 {etherscan => rstms_etherscan_python}/version.py | 0 29 files changed, 2 insertions(+), 1 deletion(-) rename {etherscan => rstms_etherscan_python}/__init__.py (100%) rename {etherscan => rstms_etherscan_python}/configs/GOERLI-stable.json (100%) rename {etherscan => rstms_etherscan_python}/configs/KOVAN-stable.json (100%) rename {etherscan => rstms_etherscan_python}/configs/MAIN-stable.json (100%) rename {etherscan => rstms_etherscan_python}/configs/RINKEBY-stable.json (100%) rename {etherscan => rstms_etherscan_python}/configs/ROPSTEN-stable.json (100%) rename {etherscan => rstms_etherscan_python}/configs/__init__.py (100%) rename {etherscan => rstms_etherscan_python}/enums/__init__.py (100%) rename {etherscan => rstms_etherscan_python}/enums/actions_enum.py (100%) rename {etherscan => rstms_etherscan_python}/enums/fields_enum.py (100%) rename {etherscan => rstms_etherscan_python}/enums/modules_enum.py (100%) rename {etherscan => rstms_etherscan_python}/enums/tags_enum.py (100%) rename {etherscan => rstms_etherscan_python}/etherscan.py (100%) rename {etherscan => rstms_etherscan_python}/modules/__init__.py (100%) rename {etherscan => rstms_etherscan_python}/modules/accounts.py (100%) rename {etherscan => rstms_etherscan_python}/modules/blocks.py (100%) rename {etherscan => rstms_etherscan_python}/modules/contracts.py (100%) rename {etherscan => rstms_etherscan_python}/modules/gastracker.py (100%) rename {etherscan => rstms_etherscan_python}/modules/pro.py (100%) rename {etherscan => rstms_etherscan_python}/modules/proxy.py (100%) rename {etherscan => rstms_etherscan_python}/modules/stats.py (100%) rename {etherscan => rstms_etherscan_python}/modules/tokens.py (100%) rename {etherscan => rstms_etherscan_python}/modules/transactions.py (100%) rename {etherscan => rstms_etherscan_python}/utils/__init__.py (100%) rename {etherscan => rstms_etherscan_python}/utils/conversions.py (100%) rename {etherscan => rstms_etherscan_python}/utils/parsing.py (100%) rename {etherscan => rstms_etherscan_python}/version.py (100%) diff --git a/make/common.mk b/make/common.mk index bd1f8c3..d8d52c6 100644 --- a/make/common.mk +++ b/make/common.mk @@ -28,6 +28,7 @@ names: @echo src_dirs=$(src_dirs) @echo python_src=$(python_src) @echo git_commit=$(git_commit) + @echo wheel=$(wheel) ## list make targets with descriptions diff --git a/pyproject.toml b/pyproject.toml index 014aa33..106b7a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ ] [tool.flit.module] -name = "etherscan" +name = "rstms_etherscan_python" [project.optional-dependencies] dev = [ diff --git a/etherscan/__init__.py b/rstms_etherscan_python/__init__.py similarity index 100% rename from etherscan/__init__.py rename to rstms_etherscan_python/__init__.py diff --git a/etherscan/configs/GOERLI-stable.json b/rstms_etherscan_python/configs/GOERLI-stable.json similarity index 100% rename from etherscan/configs/GOERLI-stable.json rename to rstms_etherscan_python/configs/GOERLI-stable.json diff --git a/etherscan/configs/KOVAN-stable.json b/rstms_etherscan_python/configs/KOVAN-stable.json similarity index 100% rename from etherscan/configs/KOVAN-stable.json rename to rstms_etherscan_python/configs/KOVAN-stable.json diff --git a/etherscan/configs/MAIN-stable.json b/rstms_etherscan_python/configs/MAIN-stable.json similarity index 100% rename from etherscan/configs/MAIN-stable.json rename to rstms_etherscan_python/configs/MAIN-stable.json diff --git a/etherscan/configs/RINKEBY-stable.json b/rstms_etherscan_python/configs/RINKEBY-stable.json similarity index 100% rename from etherscan/configs/RINKEBY-stable.json rename to rstms_etherscan_python/configs/RINKEBY-stable.json diff --git a/etherscan/configs/ROPSTEN-stable.json b/rstms_etherscan_python/configs/ROPSTEN-stable.json similarity index 100% rename from etherscan/configs/ROPSTEN-stable.json rename to rstms_etherscan_python/configs/ROPSTEN-stable.json diff --git a/etherscan/configs/__init__.py b/rstms_etherscan_python/configs/__init__.py similarity index 100% rename from etherscan/configs/__init__.py rename to rstms_etherscan_python/configs/__init__.py diff --git a/etherscan/enums/__init__.py b/rstms_etherscan_python/enums/__init__.py similarity index 100% rename from etherscan/enums/__init__.py rename to rstms_etherscan_python/enums/__init__.py diff --git a/etherscan/enums/actions_enum.py b/rstms_etherscan_python/enums/actions_enum.py similarity index 100% rename from etherscan/enums/actions_enum.py rename to rstms_etherscan_python/enums/actions_enum.py diff --git a/etherscan/enums/fields_enum.py b/rstms_etherscan_python/enums/fields_enum.py similarity index 100% rename from etherscan/enums/fields_enum.py rename to rstms_etherscan_python/enums/fields_enum.py diff --git a/etherscan/enums/modules_enum.py b/rstms_etherscan_python/enums/modules_enum.py similarity index 100% rename from etherscan/enums/modules_enum.py rename to rstms_etherscan_python/enums/modules_enum.py diff --git a/etherscan/enums/tags_enum.py b/rstms_etherscan_python/enums/tags_enum.py similarity index 100% rename from etherscan/enums/tags_enum.py rename to rstms_etherscan_python/enums/tags_enum.py diff --git a/etherscan/etherscan.py b/rstms_etherscan_python/etherscan.py similarity index 100% rename from etherscan/etherscan.py rename to rstms_etherscan_python/etherscan.py diff --git a/etherscan/modules/__init__.py b/rstms_etherscan_python/modules/__init__.py similarity index 100% rename from etherscan/modules/__init__.py rename to rstms_etherscan_python/modules/__init__.py diff --git a/etherscan/modules/accounts.py b/rstms_etherscan_python/modules/accounts.py similarity index 100% rename from etherscan/modules/accounts.py rename to rstms_etherscan_python/modules/accounts.py diff --git a/etherscan/modules/blocks.py b/rstms_etherscan_python/modules/blocks.py similarity index 100% rename from etherscan/modules/blocks.py rename to rstms_etherscan_python/modules/blocks.py diff --git a/etherscan/modules/contracts.py b/rstms_etherscan_python/modules/contracts.py similarity index 100% rename from etherscan/modules/contracts.py rename to rstms_etherscan_python/modules/contracts.py diff --git a/etherscan/modules/gastracker.py b/rstms_etherscan_python/modules/gastracker.py similarity index 100% rename from etherscan/modules/gastracker.py rename to rstms_etherscan_python/modules/gastracker.py diff --git a/etherscan/modules/pro.py b/rstms_etherscan_python/modules/pro.py similarity index 100% rename from etherscan/modules/pro.py rename to rstms_etherscan_python/modules/pro.py diff --git a/etherscan/modules/proxy.py b/rstms_etherscan_python/modules/proxy.py similarity index 100% rename from etherscan/modules/proxy.py rename to rstms_etherscan_python/modules/proxy.py diff --git a/etherscan/modules/stats.py b/rstms_etherscan_python/modules/stats.py similarity index 100% rename from etherscan/modules/stats.py rename to rstms_etherscan_python/modules/stats.py diff --git a/etherscan/modules/tokens.py b/rstms_etherscan_python/modules/tokens.py similarity index 100% rename from etherscan/modules/tokens.py rename to rstms_etherscan_python/modules/tokens.py diff --git a/etherscan/modules/transactions.py b/rstms_etherscan_python/modules/transactions.py similarity index 100% rename from etherscan/modules/transactions.py rename to rstms_etherscan_python/modules/transactions.py diff --git a/etherscan/utils/__init__.py b/rstms_etherscan_python/utils/__init__.py similarity index 100% rename from etherscan/utils/__init__.py rename to rstms_etherscan_python/utils/__init__.py diff --git a/etherscan/utils/conversions.py b/rstms_etherscan_python/utils/conversions.py similarity index 100% rename from etherscan/utils/conversions.py rename to rstms_etherscan_python/utils/conversions.py diff --git a/etherscan/utils/parsing.py b/rstms_etherscan_python/utils/parsing.py similarity index 100% rename from etherscan/utils/parsing.py rename to rstms_etherscan_python/utils/parsing.py diff --git a/etherscan/version.py b/rstms_etherscan_python/version.py similarity index 100% rename from etherscan/version.py rename to rstms_etherscan_python/version.py From 76ba1530c6d7701d745fdca4ce26185b5df8d1a7 Mon Sep 17 00:00:00 2001 From: Matt Krueger Date: Tue, 18 Apr 2023 17:56:32 -0500 Subject: [PATCH 2/3] modify bumpversion cfg --- .bumpversion.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 69ffdf2..bf69f33 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -3,7 +3,7 @@ current_version = 2.1.4 commit = True tag = True -[bumpversion:file:etherscan/version.py] +[bumpversion:file:rstms_etherscan_python/version.py] search = __version__ = "{current_version}" replace = __version__ = "{new_version}" From 527fee4c2e605ddd5955cc336ffee256b152074a Mon Sep 17 00:00:00 2001 From: Matt Krueger Date: Tue, 18 Apr 2023 17:56:35 -0500 Subject: [PATCH 3/3] =?UTF-8?q?Bump=20version:=202.1.4=20=E2=86=92=202.1.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- VERSION | 2 +- rstms_etherscan_python/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bf69f33..d938a0e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.4 +current_version = 2.1.5 commit = True tag = True diff --git a/VERSION b/VERSION index 7d2ed7c..cd57a8b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.4 +2.1.5 diff --git a/rstms_etherscan_python/version.py b/rstms_etherscan_python/version.py index df4be5e..0b167e6 100644 --- a/rstms_etherscan_python/version.py +++ b/rstms_etherscan_python/version.py @@ -1 +1 @@ -__version__ = "2.1.4" +__version__ = "2.1.5" pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy