Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Cancun" fork to ForkName #45

Merged
merged 2 commits into from Apr 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 6 additions & 2 deletions .circleci/config.yml
Expand Up @@ -22,7 +22,9 @@ common: &common
- cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
- run:
name: install dependencies
command: python -m pip install --user tox
command: |
python -m pip install --upgrade pip
python -m pip install tox
- run:
name: run tox
command: python -m tox -r
Expand Down Expand Up @@ -50,7 +52,9 @@ windows_steps: &windows_steps
- cache-v1-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
- run:
name: install dependencies
command: python -m pip install --user tox
command: |
python -m pip install --upgrade pip
python -m pip install tox
- run:
name: run tox
command: python -m tox -r
Expand Down
1 change: 1 addition & 0 deletions eth_typing/enums.py
Expand Up @@ -14,3 +14,4 @@ class ForkName:
GrayGlacier = "GrayGlacier"
Paris = "Paris"
Shanghai = "Shanghai"
Cancun = "Cancun"
1 change: 1 addition & 0 deletions newsfragments/45.feature.rst
@@ -0,0 +1 @@
Add ``Cancun`` to ``ForkName`` enum.
1 change: 1 addition & 0 deletions newsfragments/45.internal.rst
@@ -0,0 +1 @@
For CircleCI builds, update ``pip`` and pip install ``tox`` under sys instead of ``--user`` to avoid ``virtualenv`` versioning issues.