-
Notifications
You must be signed in to change notification settings - Fork 10
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
chore: upgrade dependencies #22
Merged
charles-cooper
merged 16 commits into
vyperlang:master
from
DanielSchiavini:dependencies
Sep 10, 2024
Merged
Changes from 4 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a0c9346
Upgrade dependencies
DanielSchiavini 5cec02d
Update tests for vyper 0.4
DanielSchiavini 964dde5
Update python versions
DanielSchiavini 01f9435
Exclude some beta versions from the test
DanielSchiavini b880037
Pin black because it can change the source
DanielSchiavini a554a6d
Try to work around windows issue
DanielSchiavini 0bf17c2
Update badge url
DanielSchiavini 44f116b
Review comments
DanielSchiavini b8d94d3
Update changelog
DanielSchiavini 0af8c2b
Pass base_path as cwd to vyper wrapper
DanielSchiavini 23672f0
Linting
DanielSchiavini 74069d4
Pass base_path when compiling from source
DanielSchiavini 4a147eb
Revert "Pass base_path when compiling from source"
DanielSchiavini 7aebaf5
Revert "Pass base_path as cwd to vyper wrapper"
DanielSchiavini a2b1677
Linting
DanielSchiavini 622617e
Update .github/workflows/main.yaml
DanielSchiavini File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 |
---|---|---|
|
@@ -127,3 +127,6 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# PyCharm | ||
.idea/ |
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
black==24.4.2 | ||
bumpversion==0.5.3 | ||
flake8==3.8.3 | ||
isort==4.3.21 | ||
mypy==0.982 | ||
pytest>6.0.0,<7.0.0 | ||
pytest-cov==2.10.1 | ||
tox==3.18.0 | ||
tqdm>=4.41.0,<5.0.0 | ||
twine>=4.0.2,<5.0.0 | ||
wheel>=0.35.1 | ||
black>=24.8.0,<25.0.0 | ||
bumpversion>=0.6.0,<1.0.0 | ||
flake8>=7.1.1,<8.0.0 | ||
isort>=5.13.2,<6.0.0 | ||
mypy>=1.11.2,<2.0.0 | ||
pytest>=8.3.2,<9.0.0 | ||
pytest-cov>=5.0.0,<6.0.0 | ||
tox>=4.18.0,<5.0.0 | ||
tqdm>=4.66.5,<5.0.0 | ||
twine>=5.1.1,<6.0.0 | ||
wheel>=0.44.0,<1.0.0 | ||
types-requests>2.32.0,<3.0.0 |
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
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[tox] | ||
envlist = | ||
lint | ||
py{36,37,38,39} | ||
py{38,39,310,311,312} | ||
|
||
[testenv] | ||
passenv = | ||
GITHUB_TOKEN | ||
deps = -r{toxinidir}/requirements-dev.txt | ||
commands = | ||
py{36,37,38,39}: python -m pytest tests/ | ||
py{38,39,310,311,312}: python -m pytest tests/ | ||
|
||
[testenv:lint] | ||
extras=linter | ||
commands = | ||
black --check {toxinidir}/vvm {toxinidir}/tests | ||
flake8 {toxinidir}/vvm {toxinidir}/tests | ||
isort --check-only --diff --recursive {toxinidir}/vvm {toxinidir}/tests | ||
mypy --disallow-untyped-defs {toxinidir}/vvm | ||
isort --check-only --diff {toxinidir}/vvm {toxinidir}/tests | ||
mypy --disallow-untyped-defs {toxinidir}/vvm --implicit-optional |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe pin this, since changing the black version can cause code changes