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

build(deps): Bump actions/setup-python from 2.3.1 to 3.1.2 #143

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2022

Bumps actions/setup-python from 2.3.1 to 3.1.2.

Release notes

Sourced from actions/setup-python's releases.

Update actions/cache version to 2.0.2

In scope of this release we updated actions/cache package as the new version contains fixes related to GHES 3.5 (actions/setup-python#382)

Add "cache-hit" output and fix "python-version" output for PyPy

This release introduces new output cache-hit (actions/setup-python#373) and fix python-version output for PyPy (actions/setup-python#365)

The cache-hit output contains boolean value indicating that an exact match was found for the key. It shows that the action uses already existing cache or not. The output is available only if cache is enabled.

The python-version contains version of Python or PyPy.

Support caching poetry dependencies and caching on GHES 3.5

steps:
- uses: actions/checkout@v3
- name: Install poetry
  run: pipx install poetry
- uses: actions/setup-python@v3
  with:
    python-version: '3.9'
    cache: 'poetry'
- run: poetry install
- run: poetry run pytest

v3.0.0

What's Changed

Breaking Changes

With the update to Node 16, all scripts will now be run with Node 16 rather than Node 12.

This new major release removes support of legacy pypy2 and pypy3 keywords. Please use more specific and flexible syntax to specify a PyPy version:

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python-version:
        - 'pypy-2.7' # the latest available version of PyPy that supports Python 2.7
        - 'pypy-3.8' # the latest available version of PyPy that supports Python 3.8
        - 'pypy-3.8-v7.3.8' # Python 3.8 and PyPy 7.3.8
    steps:
    - uses: actions/checkout@v2
    - uses: actions/setup-python@v3
      with:
        python-version: ${{ matrix.python-version }}
</tr></table> 

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added build Changes that affect the build system or external dependencies ci Changes to CI configuration files and scripts dependencies Changes that update dependency file labels May 1, 2022
@dependabot dependabot bot requested a review from playpauseandstop May 1, 2022 05:01
@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/setup-python-3.1.2 branch 2 times, most recently from d1dacff to 3a3fbc2 Compare June 8, 2022 13:48
@playpauseandstop playpauseandstop enabled auto-merge (squash) June 8, 2022 13:51
@playpauseandstop
Copy link
Owner

@dependabot rebase

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2.3.1 to 3.1.2.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v2.3.1...v3.1.2)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/actions/setup-python-3.1.2 branch from 3a3fbc2 to 79d0520 Compare June 8, 2022 13:52
@playpauseandstop playpauseandstop merged commit 7a5af74 into master Jun 8, 2022
@playpauseandstop playpauseandstop deleted the dependabot/github_actions/actions/setup-python-3.1.2 branch June 8, 2022 13:55
@coveralls
Copy link

coveralls commented Jun 8, 2022

Coverage Status

Coverage remained the same at 97.167% when pulling 79d0520 on dependabot/github_actions/actions/setup-python-3.1.2 into 30d5889 on master.

badabump-release-bot bot pushed a commit that referenced this pull request Dec 20, 2022
Features:
---------

- [#189] **BREAKING CHANGE:** (**changelog**) Merge similar commits within group (#197)
- [#189] (**changelog**) Do not duplicate same commit messages (#196)

Fixes:
------

- [#114] Fix guessing project files for python projest with dashes in names (#202)

Refactoring:
------------

- [#185] **BREAKING CHANGE:** (**ci**) Change output at GitHub Actions (#203)
- Use attrs NG import (#201)

Other:
------

- **BREAKING CHANGE:** Monthly maintenance (Jun 2022) (#148)
- (**deps**) Bump actions/checkout from 2.3.5 to 2.4.0 (#119)
- (**deps**) Bump actions/cache from 2.1.6 to 2.1.7 (#117)
- (**deps**) Bump actions/setup-python from 2.2.2 to 2.3.1 (#120)
- (**deps**) Bump tibdex/github-app-token from 1.4 to 1.5 (#121)
- (**deps**) Bump peter-evans/create-pull-request from 3.10.1 to 3.11.0 (#118)
- (**deps-dev**) Bump coverage from 6.1.1 to 6.2 (#115)
- (**deps-dev**) Bump time-machine from 2.4.0 to 2.4.1 (#116)
- Update Python dev version to 3.10.1 (#127)
- Monthly maintenance (Jan 2022) (#128)
- (**deps**) Bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 (#126)
- (**deps**) Bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.0 (#132)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.0 to 3.12.1 (#131)
- (**deps-dev**) Bump mypy from 0.930 to 0.931 (#130)
- (**deps**) Bump actions/checkout from 2.4.0 to 3.0.2 (#142)
- (**deps**) Bump actions/cache from 2.1.7 to 3.0.4 (#149)
- (**deps**) Bump actions/setup-python from 2.3.1 to 3.1.2 (#143)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.1 to 4.0.4 (#150)
- Sync common project files (#154, #161, #170, #173, #183)
- (**deps**) Bump pre-commit/action from 2.0.3 to 3.0.0 (#156)
- (**deps**) Bump actions/setup-python from 3.1.2 to 4.0.0 (#155)
- Update default branch name (#157)
- Move coveralls to dev deps (#158)
- Minor rework of env vars (#159)
- Refactor CI workflows and actions (#160)
- (**deps-dev**) Bump time-machine from 2.7.0 to 2.7.1 (#162)
- (**deps**) Bump tibdex/github-app-token from 1.5 to 1.6 (#169)
- Use latest py311 beta as well as bump attrs version to use (#164)
- Update minimum requirements (#184)
- (**deps**) Bump peter-evans/create-pull-request from 4.0.4 to 4.1.3 (#182)
- Update Python dev version to 3.10.8 (#187)
- Enforce mypy no-implicit-optional setting (#188)
- Introduce no-optional hook to the project (#190)
- Update Python dev version to 3.11.0 (#191)
- (**deps**) Bump peter-evans/create-pull-request from 4.1.3 to 4.2.0 (#195)
- (**deps**) Bump tibdex/github-app-token from 1.6 to 1.7 (#194)
- Update Python dev version to 3.11.1 (#200)
- (**deps**) Bump peter-evans/create-pull-request from 4.2.0 to 4.2.3 (#198)
badabump-release-bot bot pushed a commit that referenced this pull request Dec 20, 2022
Features:
---------

- [#189] **BREAKING CHANGE:** (**changelog**) Merge similar commits within group (#197)
- [#189] (**changelog**) Do not duplicate same commit messages (#196)

Fixes:
------

- [#114] Fix guessing project files for python projest with dashes in names (#202)

Refactoring:
------------

- [#185] **BREAKING CHANGE:** (**ci**) Change output at GitHub Actions (#203)
- Use attrs NG import (#201)

Other:
------

- **BREAKING CHANGE:** Monthly maintenance (Jun 2022) (#148)
- (**deps**) Bump actions/checkout from 2.3.5 to 2.4.0 (#119)
- (**deps**) Bump actions/cache from 2.1.6 to 2.1.7 (#117)
- (**deps**) Bump actions/setup-python from 2.2.2 to 2.3.1 (#120)
- (**deps**) Bump tibdex/github-app-token from 1.4 to 1.5 (#121)
- (**deps**) Bump peter-evans/create-pull-request from 3.10.1 to 3.11.0 (#118)
- (**deps-dev**) Bump coverage from 6.1.1 to 6.2 (#115)
- (**deps-dev**) Bump time-machine from 2.4.0 to 2.4.1 (#116)
- Update Python dev version to 3.10.1 (#127)
- Monthly maintenance (Jan 2022) (#128)
- (**deps**) Bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 (#126)
- (**deps**) Bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.0 (#132)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.0 to 3.12.1 (#131)
- (**deps-dev**) Bump mypy from 0.930 to 0.931 (#130)
- (**deps**) Bump actions/checkout from 2.4.0 to 3.0.2 (#142)
- (**deps**) Bump actions/cache from 2.1.7 to 3.0.4 (#149)
- (**deps**) Bump actions/setup-python from 2.3.1 to 3.1.2 (#143)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.1 to 4.0.4 (#150)
- Sync common project files (#154, #161, #170, #173, #183)
- (**deps**) Bump pre-commit/action from 2.0.3 to 3.0.0 (#156)
- (**deps**) Bump actions/setup-python from 3.1.2 to 4.0.0 (#155)
- Update default branch name (#157)
- Move coveralls to dev deps (#158)
- Minor rework of env vars (#159)
- Refactor CI workflows and actions (#160)
- (**deps-dev**) Bump time-machine from 2.7.0 to 2.7.1 (#162)
- (**deps**) Bump tibdex/github-app-token from 1.5 to 1.6 (#169)
- Use latest py311 beta as well as bump attrs version to use (#164)
- Update minimum requirements (#184)
- (**deps**) Bump peter-evans/create-pull-request from 4.0.4 to 4.1.3 (#182)
- Update Python dev version to 3.10.8 (#187)
- Enforce mypy no-implicit-optional setting (#188)
- Introduce no-optional hook to the project (#190)
- Update Python dev version to 3.11.0 (#191)
- (**deps**) Bump peter-evans/create-pull-request from 4.1.3 to 4.2.0 (#195)
- (**deps**) Bump tibdex/github-app-token from 1.6 to 1.7 (#194)
- Update Python dev version to 3.11.1 (#200)
- (**deps**) Bump peter-evans/create-pull-request from 4.2.0 to 4.2.3 (#198)
badabump-release-bot bot pushed a commit that referenced this pull request Dec 20, 2022
Features:
---------

- [#189] **BREAKING CHANGE:** (**changelog**) Merge similar commits within group (#197)
- [#189] (**changelog**) Do not duplicate same commit messages (#196)

Fixes:
------

- [#114] Fix guessing project files for python projest with dashes in names (#202)

Refactoring:
------------

- [#185] **BREAKING CHANGE:** (**ci**) Change output at GitHub Actions (#203)
- Use attrs NG import (#201)

Other:
------

- **BREAKING CHANGE:** Monthly maintenance (Jun 2022) (#148)
- (**deps**) Bump actions/checkout from 2.3.5 to 2.4.0 (#119)
- (**deps**) Bump actions/cache from 2.1.6 to 2.1.7 (#117)
- (**deps**) Bump actions/setup-python from 2.2.2 to 2.3.1 (#120)
- (**deps**) Bump tibdex/github-app-token from 1.4 to 1.5 (#121)
- (**deps**) Bump peter-evans/create-pull-request from 3.10.1 to 3.11.0 (#118)
- (**deps-dev**) Bump coverage from 6.1.1 to 6.2 (#115)
- (**deps-dev**) Bump time-machine from 2.4.0 to 2.4.1 (#116)
- Update Python dev version to 3.10.1 (#127)
- Monthly maintenance (Jan 2022) (#128)
- (**deps**) Bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 (#126)
- (**deps**) Bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.0 (#132)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.0 to 3.12.1 (#131)
- (**deps-dev**) Bump mypy from 0.930 to 0.931 (#130)
- (**deps**) Bump actions/checkout from 2.4.0 to 3.0.2 (#142)
- (**deps**) Bump actions/cache from 2.1.7 to 3.0.4 (#149)
- (**deps**) Bump actions/setup-python from 2.3.1 to 3.1.2 (#143)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.1 to 4.0.4 (#150)
- Sync common project files (#154, #161, #170, #173, #183, #206)
- (**deps**) Bump pre-commit/action from 2.0.3 to 3.0.0 (#156)
- (**deps**) Bump actions/setup-python from 3.1.2 to 4.0.0 (#155)
- Update default branch name (#157)
- Move coveralls to dev deps (#158)
- Minor rework of env vars (#159)
- Refactor CI workflows and actions (#160)
- (**deps-dev**) Bump time-machine from 2.7.0 to 2.7.1 (#162)
- (**deps**) Bump tibdex/github-app-token from 1.5 to 1.6 (#169)
- Use latest py311 beta as well as bump attrs version to use (#164)
- Update minimum requirements (#184)
- (**deps**) Bump peter-evans/create-pull-request from 4.0.4 to 4.1.3 (#182)
- Update Python dev version to 3.10.8 (#187)
- Enforce mypy no-implicit-optional setting (#188)
- Introduce no-optional hook to the project (#190)
- Update Python dev version to 3.11.0 (#191)
- (**deps**) Bump peter-evans/create-pull-request from 4.1.3 to 4.2.0 (#195)
- (**deps**) Bump tibdex/github-app-token from 1.6 to 1.7 (#194)
- Update Python dev version to 3.11.1 (#200)
- (**deps**) Bump peter-evans/create-pull-request from 4.2.0 to 4.2.3 (#198)
playpauseandstop added a commit that referenced this pull request Dec 20, 2022
First stable `badabump` release in **2022**, which provides more
stability to the project and, most importantly, update outputs at
GitHub Actions to silence `::set-output ...` deprecation warnings.

On top of that this version of `badabump` will merge similar commits
within one group and fix guessing project files for Python projects
with dashes in names, like `aiohttp-middlewares`.

Thanks for using `badabump` and please await on more features and
fixes in 2023 🎄 

---

Features:
---------

- [#189] **BREAKING CHANGE:** (**changelog**) Merge similar commits within group (#197)
- [#189] (**changelog**) Do not duplicate same commit messages (#196)

Fixes:
------

- [#114] Fix guessing project files for python projest with dashes in names (#202)

Refactoring:
------------

- [#185] **BREAKING CHANGE:** (**ci**) Change output at GitHub Actions (#203)
- Use attrs NG import (#201)

Other:
------

- **BREAKING CHANGE:** Monthly maintenance (Jun 2022) (#148)
- (**deps**) Bump actions/checkout from 2.3.5 to 2.4.0 (#119)
- (**deps**) Bump actions/cache from 2.1.6 to 2.1.7 (#117)
- (**deps**) Bump actions/setup-python from 2.2.2 to 2.3.1 (#120)
- (**deps**) Bump tibdex/github-app-token from 1.4 to 1.5 (#121)
- (**deps**) Bump peter-evans/create-pull-request from 3.10.1 to 3.11.0 (#118)
- (**deps-dev**) Bump coverage from 6.1.1 to 6.2 (#115)
- (**deps-dev**) Bump time-machine from 2.4.0 to 2.4.1 (#116)
- Update Python dev version to 3.10.1 (#127)
- Monthly maintenance (Jan 2022) (#128)
- (**deps**) Bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 (#126)
- (**deps**) Bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.0 (#132)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.0 to 3.12.1 (#131)
- (**deps-dev**) Bump mypy from 0.930 to 0.931 (#130)
- (**deps**) Bump actions/checkout from 2.4.0 to 3.0.2 (#142)
- (**deps**) Bump actions/cache from 2.1.7 to 3.0.4 (#149)
- (**deps**) Bump actions/setup-python from 2.3.1 to 3.1.2 (#143)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.1 to 4.0.4 (#150)
- Sync common project files (#154, #161, #170, #173, #183, #206)
- (**deps**) Bump pre-commit/action from 2.0.3 to 3.0.0 (#156)
- (**deps**) Bump actions/setup-python from 3.1.2 to 4.0.0 (#155)
- Update default branch name (#157)
- Move coveralls to dev deps (#158)
- Minor rework of env vars (#159)
- Refactor CI workflows and actions (#160)
- (**deps-dev**) Bump time-machine from 2.7.0 to 2.7.1 (#162)
- (**deps**) Bump tibdex/github-app-token from 1.5 to 1.6 (#169)
- Use latest py311 beta as well as bump attrs version to use (#164)
- Update minimum requirements (#184)
- (**deps**) Bump peter-evans/create-pull-request from 4.0.4 to 4.1.3 (#182)
- Update Python dev version to 3.10.8 (#187)
- Enforce mypy no-implicit-optional setting (#188)
- Introduce no-optional hook to the project (#190)
- Update Python dev version to 3.11.0 (#191)
- (**deps**) Bump peter-evans/create-pull-request from 4.1.3 to 4.2.0 (#195)
- (**deps**) Bump tibdex/github-app-token from 1.6 to 1.7 (#194)
- Update Python dev version to 3.11.1 (#200)
- (**deps**) Bump peter-evans/create-pull-request from 4.2.0 to 4.2.3 (#198)

Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
badabump-release-bot bot pushed a commit that referenced this pull request Dec 20, 2022
Features:
---------

- [#189] **BREAKING CHANGE:** (**changelog**) Merge similar commits within group (#197)
- [#189] (**changelog**) Do not duplicate same commit messages (#196)

Fixes:
------

- [#114] Fix guessing project files for python projest with dashes in names (#202)

Refactoring:
------------

- [#185] **BREAKING CHANGE:** (**ci**) Change output at GitHub Actions (#203)
- Use attrs NG import (#201)

Other:
------

- **BREAKING CHANGE:** Monthly maintenance (Jun 2022) (#148)
- **BREAKING CHANGE:** 22.1.0 Release (#207)
- (**deps**) Bump actions/checkout from 2.3.5 to 2.4.0 (#119)
- (**deps**) Bump actions/cache from 2.1.6 to 2.1.7 (#117)
- (**deps**) Bump actions/setup-python from 2.2.2 to 2.3.1 (#120)
- (**deps**) Bump tibdex/github-app-token from 1.4 to 1.5 (#121)
- (**deps**) Bump peter-evans/create-pull-request from 3.10.1 to 3.11.0 (#118)
- (**deps-dev**) Bump coverage from 6.1.1 to 6.2 (#115)
- (**deps-dev**) Bump time-machine from 2.4.0 to 2.4.1 (#116)
- Update Python dev version to 3.10.1 (#127)
- Monthly maintenance (Jan 2022) (#128)
- (**deps**) Bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 (#126)
- (**deps**) Bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.0 (#132)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.0 to 3.12.1 (#131)
- (**deps-dev**) Bump mypy from 0.930 to 0.931 (#130)
- (**deps**) Bump actions/checkout from 2.4.0 to 3.0.2 (#142)
- (**deps**) Bump actions/cache from 2.1.7 to 3.0.4 (#149)
- (**deps**) Bump actions/setup-python from 2.3.1 to 3.1.2 (#143)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.1 to 4.0.4 (#150)
- Sync common project files (#154, #161, #170, #173, #183, #206)
- (**deps**) Bump pre-commit/action from 2.0.3 to 3.0.0 (#156)
- (**deps**) Bump actions/setup-python from 3.1.2 to 4.0.0 (#155)
- Update default branch name (#157)
- Move coveralls to dev deps (#158)
- Minor rework of env vars (#159)
- Refactor CI workflows and actions (#160)
- (**deps-dev**) Bump time-machine from 2.7.0 to 2.7.1 (#162)
- (**deps**) Bump tibdex/github-app-token from 1.5 to 1.6 (#169)
- Use latest py311 beta as well as bump attrs version to use (#164)
- Update minimum requirements (#184)
- (**deps**) Bump peter-evans/create-pull-request from 4.0.4 to 4.1.3 (#182)
- Update Python dev version to 3.10.8 (#187)
- Enforce mypy no-implicit-optional setting (#188)
- Introduce no-optional hook to the project (#190)
- Update Python dev version to 3.11.0 (#191)
- (**deps**) Bump peter-evans/create-pull-request from 4.1.3 to 4.2.0 (#195)
- (**deps**) Bump tibdex/github-app-token from 1.6 to 1.7 (#194)
- Update Python dev version to 3.11.1 (#200)
- (**deps**) Bump peter-evans/create-pull-request from 4.2.0 to 4.2.3 (#198)
- "chore: 22.1.0 Release (#207)" (#208)
- Fix stable trove classifier (#210)
playpauseandstop added a commit that referenced this pull request Dec 20, 2022
First stable `badabump` release in **2022**, which provides more
stability to the project and, most importantly, update outputs at
GitHub Actions to silence `::set-output ...` deprecation warnings.

On top of that this version of `badabump` will merge similar commits
within one group and fix guessing project files for Python projects
with dashes in names, like `aiohttp-middlewares`.

Thanks for using `badabump` and please await on more features and
fixes in 2023 🎄

---

Features:
---------

- [#189] **BREAKING CHANGE:** (**changelog**) Merge similar commits within group (#197)
- [#189] (**changelog**) Do not duplicate same commit messages (#196)

Fixes:
------

- [#114] Fix guessing project files for python projest with dashes in names (#202)

Refactoring:
------------

- [#185] **BREAKING CHANGE:** (**ci**) Change output at GitHub Actions (#203)
- Use attrs NG import (#201)

Other:
------

- **BREAKING CHANGE:** Monthly maintenance (Jun 2022) (#148)
- (**deps**) Bump actions/checkout from 2.3.5 to 2.4.0 (#119)
- (**deps**) Bump actions/cache from 2.1.6 to 2.1.7 (#117)
- (**deps**) Bump actions/setup-python from 2.2.2 to 2.3.1 (#120)
- (**deps**) Bump tibdex/github-app-token from 1.4 to 1.5 (#121)
- (**deps**) Bump peter-evans/create-pull-request from 3.10.1 to 3.11.0 (#118)
- (**deps-dev**) Bump coverage from 6.1.1 to 6.2 (#115)
- (**deps-dev**) Bump time-machine from 2.4.0 to 2.4.1 (#116)
- Update Python dev version to 3.10.1 (#127)
- Monthly maintenance (Jan 2022) (#128)
- (**deps**) Bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 (#126)
- (**deps**) Bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.0 (#132)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.0 to 3.12.1 (#131)
- (**deps-dev**) Bump mypy from 0.930 to 0.931 (#130)
- (**deps**) Bump actions/checkout from 2.4.0 to 3.0.2 (#142)
- (**deps**) Bump actions/cache from 2.1.7 to 3.0.4 (#149)
- (**deps**) Bump actions/setup-python from 2.3.1 to 3.1.2 (#143)
- (**deps**) Bump peter-evans/create-pull-request from 3.12.1 to 4.0.4 (#150)
- Sync common project files (#154, #161, #170, #173, #183, #206)
- (**deps**) Bump pre-commit/action from 2.0.3 to 3.0.0 (#156)
- (**deps**) Bump actions/setup-python from 3.1.2 to 4.0.0 (#155)
- Update default branch name (#157)
- Move coveralls to dev deps (#158)
- Minor rework of env vars (#159)
- Refactor CI workflows and actions (#160)
- (**deps-dev**) Bump time-machine from 2.7.0 to 2.7.1 (#162)
- (**deps**) Bump tibdex/github-app-token from 1.5 to 1.6 (#169)
- Use latest py311 beta as well as bump attrs version to use (#164)
- Update minimum requirements (#184)
- (**deps**) Bump peter-evans/create-pull-request from 4.0.4 to 4.1.3 (#182)
- Update Python dev version to 3.10.8 (#187)
- Enforce mypy no-implicit-optional setting (#188)
- Introduce no-optional hook to the project (#190)
- Update Python dev version to 3.11.0 (#191)
- (**deps**) Bump peter-evans/create-pull-request from 4.1.3 to 4.2.0 (#195)
- (**deps**) Bump tibdex/github-app-token from 1.6 to 1.7 (#194)
- Update Python dev version to 3.11.1 (#200)
- (**deps**) Bump peter-evans/create-pull-request from 4.2.0 to 4.2.3 (#198)
- Fix stable trove classifier (#210)

Co-authored-by: playpauseandstop <playpauseandstop@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build Changes that affect the build system or external dependencies ci Changes to CI configuration files and scripts dependencies Changes that update dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants