-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/setup-python from 4 to 5
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Bernát Gábor <[email protected]>
- Loading branch information
1 parent
35d9ba0
commit 75efbed
Showing
7 changed files
with
49 additions
and
40 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
changelog: | ||
exclude: | ||
authors: | ||
- dependabot | ||
- pre-commit-ci |
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,7 +1,11 @@ | ||
name: check | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: "main" | ||
pull_request: | ||
schedule: | ||
- cron: "0 8 * * *" | ||
|
||
concurrency: | ||
group: check-${{ github.ref }} | ||
|
@@ -12,9 +16,9 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
python-version: "3.12" | ||
- uses: pre-commit/[email protected] | ||
env: | ||
SETUPTOOLS_USE_DISTUTILS: stdlib | ||
|
@@ -36,13 +40,13 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
- name: setup python for tox | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
python-version: "3.12" | ||
- name: install tox | ||
run: python -m pip install tox | ||
- name: setup python for test ${{ matrix.py }} | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.py }} | ||
- name: Pick environment to run | ||
|
@@ -77,9 +81,9 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
python-version: "3.12" | ||
- name: Install tox | ||
run: python -m pip install tox | ||
- name: Setup coverage tool | ||
|
@@ -113,10 +117,10 @@ jobs: | |
- type | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: setup Python "3.11" | ||
uses: actions/setup-python@v4 | ||
- name: setup Python "3.12" | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
python-version: "3.12" | ||
- name: install tox | ||
run: python -m pip install tox | ||
- name: run check for ${{ matrix.tox_env }} | ||
|
@@ -128,9 +132,9 @@ jobs: | |
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: setup python to build package | ||
uses: actions/setup-python@v4 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
python-version: "3.12" | ||
- name: install build | ||
run: python -m pip install build | ||
- uses: actions/checkout@v4 | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ url = https://github.com/bloomberg/attrs-strict | |
author = Erik-Cristian Seulean | ||
author_email = [email protected] | ||
license = Apache-2.0 | ||
license_file = LICENSE | ||
license_files = LICENSE | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Intended Audience :: Developers | ||
|
@@ -30,9 +30,9 @@ project_urls = | |
[options] | ||
packages = attrs_strict | ||
install_requires = | ||
attrs>=22.2 | ||
typing-extensions>=4.5;python_version < "3.8" | ||
python_requires = >=3.7 | ||
attrs>=23.1 | ||
typing-extensions>=4.8;python_version < "3.8" | ||
python_requires = >=3.8 | ||
package_dir = | ||
=src | ||
|
||
|
@@ -41,11 +41,11 @@ where = src | |
|
||
[options.extras_require] | ||
docs = | ||
Sphinx>=6.1.3 | ||
Sphinx>=7.2.6 | ||
test = | ||
covdefaults>=2.3 | ||
pytest>=7.3.1 | ||
pytest-cov>=4 | ||
pytest>=7.4.3 | ||
pytest-cov>=4.1 | ||
|
||
[options.package_data] | ||
attrs_strict = py.typed | ||
|
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