From 7e40a2c0aef8eb68ba228af07894a8323e058655 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Thu, 29 Dec 2022 18:35:08 -0500 Subject: rename master to main and add python 3.11 --- .github/dependabot.yml | 10 ++++++++++ .github/workflows/ci-tests.yml | 7 ++++--- setup.cfg | 1 + tox.ini | 4 ++-- 4 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5737055 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +# Set update schedule for GitHub Actions + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every weekday + interval: "daily" diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index a7a717d..fc11c6e 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -1,10 +1,10 @@ name: Build and test on: - # Only on pushes to master or one of the release branches we build on push + # Only on pushes to main or one of the release branches we build on push push: branches: - - master + - main - "[0-9].[0-9]+-branch" tags: # Build pull requests @@ -19,7 +19,8 @@ jobs: - "3.8" - "3.9" - "3.10" - - "pypy-3.7" + - "3.11" + - "pypy-3.8" os: - "ubuntu-latest" # - "windows-latest" diff --git a/setup.cfg b/setup.cfg index fec9b05..ec761a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -25,6 +25,7 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy Topic :: Internet :: WWW/HTTP diff --git a/tox.ini b/tox.ini index 4b9996b..52de84b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py37,py38,py39,py310,pypy3, + py37,py38,py39,py310,py311,pypy3, coverage, docs isolated_build = True @@ -24,7 +24,7 @@ setenv = COVERAGE_FILE=.coverage [testenv:docs] -whitelist_externals = make +allowlist_externals = make commands = make -C docs html epub BUILDDIR={envdir} extras = -- cgit v1.2.1