Skip to content

Commit a752c1a

Browse files
committed
Merge branch 'main' into joycebrum/main
2 parents 918a826 + 90bbf31 commit a752c1a

File tree

233 files changed

+5972
-3325
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

233 files changed

+5972
-3325
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 67.3.2
2+
current_version = 68.0.0
33
commit = True
44
tag = True
55

.coveragerc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
omit =
33
# leading `*/` for pytest-dev/pytest-cov#456
44
*/.tox/*
5-
*/pep517-build-env-*
5+
disable_warnings =
6+
couldnt-parse
67

78
# local
89
*/_validate_pyproject/* # generated code, tested in `validate-pyproject`

.flake8

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Closes <!-- issue number here -->
99

1010
### Pull Request Checklist
1111
- [ ] Changes have tests
12-
- [ ] News fragment added in [`changelog.d/`].
12+
- [ ] News fragment added in [`newsfragments/`].
1313
_(See [documentation][PR docs] for details)_
1414

1515

16-
[`changelog.d/`]: https://github.com/pypa/setuptools/tree/master/changelog.d
16+
[`newsfragments/`]: https://github.com/pypa/setuptools/tree/master/newsfragments
1717
[PR docs]:
1818
https://setuptools.pypa.io/en/latest/development/developer-guide.html#making-a-pull-request

.github/workflows/main.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: tests
22

33
on: [push, pull_request, workflow_dispatch]
44

5-
permissions:
6-
contents: read
7-
85
concurrency:
96
group: >-
107
${{ github.workflow }}-
118
${{ github.ref_type }}-
129
${{ github.event.pull_request.number || github.sha }}
1310
cancel-in-progress: true
1411

12+
permissions:
13+
contents: read
14+
1515
env:
1616
# Environment variables to support color support (jaraco/skeleton#66):
1717
# Request colored output from CLI tools supporting it. Different tools
@@ -122,8 +122,6 @@ jobs:
122122
- uses: actions/checkout@v3
123123
- name: Setup Python
124124
uses: actions/setup-python@v4
125-
with:
126-
python-version: ${{ matrix.python }}${{ matrix.dev }}
127125
- name: Install tox
128126
run: |
129127
python -m pip install tox
@@ -231,10 +229,10 @@ jobs:
231229
run: tox -e integration
232230

233231
release:
234-
needs:
235-
- check
236232
permissions:
237233
contents: write
234+
needs:
235+
- check
238236
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
239237
runs-on: ubuntu-latest
240238
timeout-minutes: 75

.readthedocs.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ python:
55
extra_requirements:
66
- docs
77

8-
# workaround for readthedocs/readthedocs.org#9623
8+
# required boilerplate readthedocs/readthedocs.org#10401
99
build:
10-
# workaround for readthedocs/readthedocs.org#9635
1110
os: ubuntu-22.04
1211
tools:
1312
python: "3"

0 commit comments

Comments
 (0)