Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Mar 30, 2023
1 parent 03e7898 commit c21f9c5
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -15,11 +15,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
- name: Get full python version
id: full-python-version
shell: bash
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/test_and_make_release.yml
Expand Up @@ -27,11 +27,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
- name: Get full python version
id: full-python-version
shell: bash
Expand All @@ -57,11 +57,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
- name: Get full python version
id: full-python-version
shell: bash
Expand All @@ -84,11 +84,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
- name: Get full python version
id: full-python-version
shell: bash
Expand All @@ -111,11 +111,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
- name: Get full python version
id: full-python-version
shell: bash
Expand All @@ -138,11 +138,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
- name: Get full python version
id: full-python-version
shell: bash
Expand Down Expand Up @@ -187,11 +187,11 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: Set up Python 3.8
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v7
uses: Gr1N/setup-poetry@v8
- name: Complete CI/CD setup
run: make setup-cicd-release-stage
- name: Get full python version
Expand All @@ -205,7 +205,7 @@ jobs:
path: .venv
key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-release-${{ hashFiles('**/poetry.lock') }}
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3.0.0
uses: cycjimmy/semantic-release-action@v3.4.2
with:
semantic_version: 17.0.4
extra_plugins: |
Expand Down
20 changes: 10 additions & 10 deletions pyproject.toml
Expand Up @@ -35,46 +35,46 @@ classifiers = [
python = "^3.7"
# Optional dependencies to be part of `test` extra
pytest = {version = "^7.1", optional = true}
pytest-cov = {version = "^3.0", optional = true}
pytest-cov = {version = "^4.0.0", optional = true}
pytest-mock = {version = "^3.2", optional = true}
pytest-html = {version = "^3.1", optional = true}
pytest-asyncio = {version = "^0", optional = true}
# Optional dependencies to be part of `bdd` extra
behave4git = {version = "^0", optional = true}
PyHamcrest = {version = "^2.0", optional = true}
# Optional dependencies to be part of `lint` extra
flake8 = {version = "^4.0", optional = true}
flake8-bugbear = {version = "^22", optional = true}
flake8 = {version = "^6.0.0", optional = true}
flake8-bugbear = {version = "^23.0.0", optional = true}
pydocstyle = {version = "^6.1", optional = true}
pylint = {version = "^2.3", optional = true}
yapf = {version = "^0", optional = true}
# Optional dependencies to be part of `type` extra
mypy = {version = "^0", optional = true}
types-python-slugify = {version = "^5", optional = true}
mypy = {version = "^1.0.0", optional = true}
types-python-slugify = {version = "^6.0.0", optional = true}
# Optional dependencies to be part of `format` extra
isort = {version = "^5", optional = true}
black = {version = "stable", optional = true, allow-prereleases = true}
# Optional dependencies to be part of `docs` extra
sphinx = {version = "^4.2", optional = true}
sphinx = {version = "^6.0.0", optional = true}
sphinx-autodoc-typehints = {version = "^1.10", optional = true}
sphinx-autobuild = {version = "^2021", optional = true}
sphinx_rtd_theme = {version = "^1", optional = true}
m2r = {version = "^0", optional = true}
# Optional dependencies to be part of `repl` extra
bpython = {version = "^0", optional = true}
# Non optional dependendies
cleo = "^0"
cleo = "^2.0.0"
#############################
# Add you dependencies here #
#############################
python-slugify = "^6"
python-slugify = "^8.0.0"
loguru = "^0"
gitpython = "^3.1"

[tool.poetry.dev-dependencies]
tox = "^3.14"
tox = "^4.0.0"
tox-pyenv = "^1.1"
rope = "^0"
rope = "^1.0.0"

[tool.poetry.extras]
test = ["pytest", "pytest-cov", "pytest-mock", "pytest-html", "pytest-asyncio", "PyHamcrest"]
Expand Down

0 comments on commit c21f9c5

Please sign in to comment.