Skip to content

Commit ee4e4d6

Browse files
author
Michael Howitz
authored
Update to Python 3.11.0b1 + fix GHA runs. (#227)
1 parent c1bc989 commit ee4e4d6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- ["3.8", "py38"]
2828
- ["3.9", "py39"]
2929
- ["3.10", "py310"]
30-
- ["3.11.0-alpha.6", "py311"]
30+
- ["3.11.0-beta.1", "py311"]
3131
- ["3.9", "docs"]
3232
- ["3.9", "coverage"]
3333
- ["3.9", "py39-datetime"]
@@ -37,6 +37,7 @@ jobs:
3737
- { os: windows, config: ["3.9", "coverage"] }
3838

3939
runs-on: ${{ matrix.os }}-latest
40+
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
4041
name: ${{ matrix.os }}-${{ matrix.config[1] }}
4142
steps:
4243
- uses: actions/checkout@v2

.meta.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
33
[meta]
44
template = "pure-python"
5-
commit-id = "387516cfda91ee38cde868ef0d6205314a6a9bef"
5+
commit-id = "5461bae88c19d8d771ba2bd5f00c69540580335d"
66

77
[python]
88
with-pypy = false

tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ deps =
2222
datetime: DateTime
2323
-cconstraints.txt
2424
pytest-cov
25+
# repoze.sphinx.autointerface does not yet support Sphinx >= 5:
26+
Sphinx < 5
2527
setenv =
2628
COVERAGE_FILE=.coverage.{envname}
2729
commands =
@@ -89,6 +91,8 @@ deps =
8991
datetime: DateTime
9092
-cconstraints.txt
9193
pytest-cov
94+
# repoze.sphinx.autointerface does not yet support Sphinx >= 5:
95+
Sphinx < 5
9296
setenv =
9397
COVERAGE_FILE=.coverage
9498
commands =

0 commit comments

Comments
 (0)