Skip to content

Commit

Permalink
chore: bump [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Nov 30, 2023
1 parent 77f900c commit a33f642
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install tomte[tox,cli]==0.2.12
pip install tomte[tox,cli]==0.2.15
pip install --user --upgrade setuptools
- name: Check copyright headers
run: tomte check-copyright --author valory --exclude-part connections --exclude-part contracts --exclude-part protocols --exclude-part abstract_abci --exclude-part abstract_round_abci --exclude-part registration_abci --exclude-part reset_pause_abci --exclude-part termination_abci --exclude-part transaction_settlement_abci
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install tomte[tox,cli]==0.2.12
pip install tomte[tox,cli]==0.2.15
pip install --user --upgrade setuptools
# install Protobuf compiler
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install tomte[tox]==0.2.12
pip install tomte[tox]==0.2.15
pip install --user --upgrade setuptools
# install Protobuf compiler
Expand All @@ -195,7 +195,7 @@ jobs:
- if: matrix.os == 'macos-latest'
name: Install dependencies (macos-latest)
run: |
pip install tomte[tox]==0.2.12
pip install tomte[tox]==0.2.15
brew install gcc
# brew install protobuf
# brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/72457f0166d5619a83f508f2345b22d0617b5021/Formula/protobuf.rb
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
choco install make -y
# to check make was installed
make --version
pip install tomte[tox]==0.2.12
pip install tomte[tox]==0.2.15
- if: matrix.os == 'windows-latest'
name: Packages unit tests windows-latest
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install tomte[tox]==0.2.12
pip install tomte[tox]==0.2.15
pip install --user --upgrade setuptools
# install Protobuf compiler
Expand Down
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

## 0.10.6 (2023-05-31)

- Bumps to `[email protected].12` and cleans up the repo #69
- Bumps to `[email protected].15` and cleans up the repo #69
- Bumps `open-aea` and `open-autonomy` frameworks to `v1.34.0` and `v0.10.5.post1` correspondingly #68


Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pytz = "==2022.2.1"
py-ecc = "==6.0.0"
### tests deps
mistune = "==2.0.3"
tomte = {version = "==0.2.12", extras = ["cli", "tests"]}
tomte = {version = "==0.2.15", extras = ["cli", "tests"]}
# for http server connection
openapi-core = "==0.13.2"
openapi-spec-validator = "==0.2.8"
Expand Down
28 changes: 14 additions & 14 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ skip_missing_interpreters = true

[deps-tests]
deps =
tomte[tests]==0.2.12
tomte[tests]==0.2.15
mistune==2.0.3

[deps-packages]
Expand Down Expand Up @@ -235,7 +235,7 @@ commands = {[commands-e2e]commands}
[testenv:bandit]
skipsdist = True
skip_install = True
deps = tomte[bandit]==0.2.12
deps = tomte[bandit]==0.2.15
commands =
bandit -s B101 -r {env:SKILLS_PATHS}/oracle_abci
bandit -s B101 -r {env:SKILLS_PATHS}/oracle_deployment_abci
Expand All @@ -245,25 +245,25 @@ commands =
[testenv:black]
skipsdist = True
skip_install = True
deps = tomte[black]==0.2.12
deps = tomte[black]==0.2.15
commands = black {env:SKILLS_PATHS}/oracle_abci {env:SKILLS_PATHS}/oracle_deployment_abci {env:SKILLS_PATHS}/price_estimation_abci scripts

[testenv:black-check]
skipsdist = True
skip_install = True
deps = tomte[black]==0.2.12
deps = tomte[black]==0.2.15
commands = black --check {env:SKILLS_PATHS}/oracle_abci {env:SKILLS_PATHS}/oracle_deployment_abci {env:SKILLS_PATHS}/price_estimation_abci

[testenv:isort]
skipsdist = True
skip_install = True
deps = tomte[isort]==0.2.12
deps = tomte[isort]==0.2.15
commands = isort --gitignore {env:PACKAGES_PATHS} scripts

[testenv:isort-check]
skipsdist = True
skip_install = True
deps = tomte[isort]==0.2.12
deps = tomte[isort]==0.2.15
commands = isort --check-only --gitignore {env:PACKAGES_PATHS} scripts

[testenv:check-hash]
Expand Down Expand Up @@ -296,42 +296,42 @@ commands = {toxinidir}/scripts/check_pipfiles.py
[testenv:flake8]
skipsdist = True
skip_install = True
deps = tomte[flake8]==0.2.12
deps = tomte[flake8]==0.2.15
commands = flake8 {env:SKILLS_PATHS}/oracle_abci {env:SKILLS_PATHS}/oracle_deployment_abci {env:SKILLS_PATHS}/price_estimation_abci scripts

[testenv:mypy]
skipsdist = True
skip_install = True
deps = tomte[mypy]==0.2.12
deps = tomte[mypy]==0.2.15
commands = mypy {env:SKILLS_PATHS}/oracle_abci {env:SKILLS_PATHS}/oracle_deployment_abci {env:SKILLS_PATHS}/price_estimation_abci scripts --disallow-untyped-defs --config-file tox.ini

[testenv:pylint]
whitelist_externals = /bin/sh
skipsdist = True
deps =
{[deps-packages]deps}
tomte[pylint]==0.2.12
tomte[pylint]==0.2.15
commands = pylint --ignore-patterns=".*_pb2.py" --ignore-paths="^packages/valory/.*$" --disable=C0103,R0801,R0912,C0301,C0201,C0204,C0209,W1203,C0302,R1735,R1729,W0511 {env:SKILLS_PATHS}/oracle_abci {env:SKILLS_PATHS}/oracle_deployment_abci {env:SKILLS_PATHS}/price_estimation_abci scripts

[testenv:safety]
skipsdist = True
skip_install = True
deps = tomte[safety]==0.2.12
deps = tomte[safety]==0.2.15
commands = safety check -i 37524 -i 38038 -i 37776 -i 38039 -i 39621 -i 40291 -i 39706 -i 41002 -i 51358 -i 51499

[testenv:darglint]
skipsdist = True
skip_install = True
deps = tomte[darglint]==0.2.12
deps = tomte[darglint]==0.2.15
commands = darglint {env:SKILLS_PATHS}/oracle_abci {env:SKILLS_PATHS}/oracle_deployment_abci {env:SKILLS_PATHS}/price_estimation_abci scripts

[testenv:check-generate-all-protocols]
skipsdist = True
usedevelop = True
deps =
{[deps-packages]deps}
tomte[isort]==0.2.12
tomte[black]==0.2.12
tomte[isort]==0.2.15
tomte[black]==0.2.15
commands = autonomy generate-all-protocols --check-clean

[testenv:spell-check]
Expand Down Expand Up @@ -380,7 +380,7 @@ commands = {toxinidir}/scripts/check_doc_ipfs_hashes.py --fix
[testenv:liccheck]
skipsdist = True
usedevelop = True
deps = tomte[liccheck,cli]==0.2.12
deps = tomte[liccheck,cli]==0.2.15
commands =
tomte freeze-dependencies --output-path {envtmpdir}/requirements.txt
liccheck -s tox.ini -r {envtmpdir}/requirements.txt -l PARANOID
Expand Down

0 comments on commit a33f642

Please sign in to comment.