forked from vyperlang/vyper
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/vyperlang/vyper into fix/…
…extcall_range
- Loading branch information
Showing
330 changed files
with
17,413 additions
and
7,057 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# jobs to validate pull request well-formedness | ||
|
||
name: Validate PR metadata | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
jobs: | ||
validate-pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
name: Run conventional commit checker | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# https://github.com/amannn/action-semantic-pull-request?tab=readme-ov-file#configuration | ||
with: | ||
types: | | ||
feat | ||
perf | ||
fix | ||
chore | ||
refactor | ||
# ci: continuous integration | ||
# docs: documentation | ||
# test: test suite | ||
# lang: language changes | ||
# ux: language changes (UX) | ||
# tool: integration | ||
# ir: (old) IR/codegen changes | ||
# codegen: lowering from vyper AST to codegen | ||
# venom: venom changes | ||
scopes: | | ||
ci | ||
build | ||
docs | ||
test | ||
lang | ||
ux | ||
tool | ||
ir | ||
codegen | ||
venom | ||
requireScope: true | ||
subjectPattern: '^(?![A-Z]).+$' | ||
subjectPatternError: | | ||
Starts with uppercase letter: '{subject}' | ||
(Full PR title: '{title}') | ||
# type[scope]<optional !>: subject | ||
# use [] instead of () for aesthetics | ||
headerPattern: '^(\w*)(?:\[([\w$.\-*/ ]*)\])?!?: (.*)$' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# upload to pypi using the pypa publish action | ||
# https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
name: Publish to PyPI | ||
|
||
on: | ||
release: | ||
types: [published] # releases and pre-releases (release candidates) | ||
|
||
jobs: | ||
publish-pypi: | ||
runs-on: ubuntu-latest | ||
|
||
# https://docs.pypi.org/trusted-publishers/using-a-publisher/ | ||
permissions: | ||
# IMPORTANT: this permission is mandatory for trusted publishing | ||
id-token: write | ||
# Specifying a GitHub environment is optional, but strongly encouraged | ||
environment: release | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine | ||
- name: Build | ||
run: python setup.py sdist bdist_wheel | ||
|
||
- name: Publish | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,4 +49,4 @@ vyper/vyper_git_commithash.txt | |
*.spec | ||
|
||
# mac | ||
.DS_Store | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"drips": { | ||
"ethereum": { | ||
"ownedBy": "0x70CCBE10F980d80b7eBaab7D2E3A73e87D67B775" | ||
} | ||
}, | ||
"opRetro": { | ||
"projectId": "0x9ca1f7b0e0d10d3bd2619e51a54f2e4175e029c87a2944cf1ebc89164ba77ea0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.