From 2531153f5fee0390ed033f596a968d6ff0a65813 Mon Sep 17 00:00:00 2001 From: kclowes Date: Wed, 17 Aug 2022 11:41:34 -0600 Subject: [PATCH 1/3] Update circleci images --- .circleci/config.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0e0b6aa2..17bc715e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -79,103 +79,103 @@ jobs: docs: <<: *common docker: - - image: circleci/python:3.8 + - image: cimg/python:3.8 environment: TOXENV: docs py37-lint: <<: *common docker: - - image: circleci/python:3.7 + - image: cimg/python:3.7 environment: TOXENV: py37-lint py37-core: <<: *common docker: - - image: circleci/python:3.7 + - image: cimg/python:3.7 environment: TOXENV: py37-core py38-lint: <<: *common docker: - - image: circleci/python:3.8 + - image: cimg/python:3.8 environment: TOXENV: py38-lint py38-core: <<: *common docker: - - image: circleci/python:3.8 + - image: cimg/python:3.8 environment: TOXENV: py38-core py39-lint: <<: *common docker: - - image: circleci/python:3.9 + - image: cimg/python:3.9 environment: TOXENV: py39-lint py39-core: <<: *common docker: - - image: circleci/python:3.9 + - image: cimg/python:3.9 environment: TOXENV: py39-core py310-lint: <<: *common docker: - - image: circleci/python:3.10 + - image: cimg/python:3.10 environment: TOXENV: py310-lint py310-core: <<: *common docker: - - image: circleci/python:3.10 + - image: cimg/python:3.10 environment: TOXENV: py310-core py37-integration: <<: *integration docker: - - image: circleci/python:3.7 + - image: cimg/python:3.7 environment: TOXENV: py37-integration py38-integration: <<: *integration docker: - - image: circleci/python:3.8 + - image: cimg/python:3.8 environment: TOXENV: py38-integration py39-integration: <<: *integration docker: - - image: circleci/python:3.9 + - image: cimg/python:3.9 environment: TOXENV: py39-integration py310-integration: <<: *integration docker: - - image: circleci/python:3.10 + - image: cimg/python:3.10 environment: TOXENV: py310-integration py37-wheel-cli: <<: *common docker: - - image: circleci/python:3.7 + - image: cimg/python:3.7 environment: TOXENV: py37-wheel-cli py38-wheel-cli: <<: *common docker: - - image: circleci/python:3.8 + - image: cimg/python:3.8 environment: TOXENV: py38-wheel-cli py39-wheel-cli: <<: *common docker: - - image: circleci/python:3.9 + - image: cimg/python:3.9 environment: TOXENV: py39-wheel-cli py310-wheel-cli: <<: *common docker: - - image: circleci/python:3.10 + - image: cimg/python:3.10 environment: TOXENV: py310-wheel-cli workflows: From 2e49549639d5932d09dd023f6cded924fa027ce6 Mon Sep 17 00:00:00 2001 From: kclowes Date: Wed, 17 Aug 2022 11:42:11 -0600 Subject: [PATCH 2/3] Mark auto-generated hdaccount docs as orphan --- docs/conf.py | 1 - docs/eth_account.hdaccount.rst | 31 +++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 docs/eth_account.hdaccount.rst diff --git a/docs/conf.py b/docs/conf.py index 7aa150c7..ccb9af82 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -82,7 +82,6 @@ "_build", "modules.rst", "eth_account.internal.rst", - "eth_account.hdaccount.rst", ] # The reST default role (used for this markup: `text`) to use for all diff --git a/docs/eth_account.hdaccount.rst b/docs/eth_account.hdaccount.rst new file mode 100644 index 00000000..3cf765c4 --- /dev/null +++ b/docs/eth_account.hdaccount.rst @@ -0,0 +1,31 @@ +:orphan: + +eth\_account.hdaccount package +============================== + +Submodules +---------- + +eth\_account.hdaccount.deterministic module +------------------------------------------- + +.. automodule:: eth_account.hdaccount.deterministic + :members: + :undoc-members: + :show-inheritance: + +eth\_account.hdaccount.mnemonic module +-------------------------------------- + +.. automodule:: eth_account.hdaccount.mnemonic + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: eth_account.hdaccount + :members: + :undoc-members: + :show-inheritance: From d8c0e4d171c7bac1483392318b6ef12647b18096 Mon Sep 17 00:00:00 2001 From: kclowes Date: Wed, 17 Aug 2022 14:06:58 -0600 Subject: [PATCH 3/3] Add newsfragment --- newsfragments/194.internal.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 newsfragments/194.internal.rst diff --git a/newsfragments/194.internal.rst b/newsfragments/194.internal.rst new file mode 100644 index 00000000..502eea91 --- /dev/null +++ b/newsfragments/194.internal.rst @@ -0,0 +1 @@ +Use updated circleci Python images, fix Sphinx warning