summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2022-12-29 18:35:08 -0500
committerMichael Merickel <michael@merickel.org>2022-12-29 18:36:48 -0500
commit7e40a2c0aef8eb68ba228af07894a8323e058655 (patch)
tree759e01fa21d81028554c33f934ae482617cc8a1a
parent0c61146bdcc10b7c344af52daf5bb7e90e4b6fcb (diff)
downloadpastedeploy-git-7e40a2c0aef8eb68ba228af07894a8323e058655.tar.gz
rename master to main and add python 3.11
-rw-r--r--.github/dependabot.yml10
-rw-r--r--.github/workflows/ci-tests.yml7
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini4
4 files changed, 17 insertions, 5 deletions
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 =