Browse Source

Merge pull request #1085 from octodns/ci-py-3-12

Add Python 3.12 to the ci test matrix and make it the current version
pull/1086/head
Ross McFarland 2 years ago
committed by GitHub
parent
commit
da9b6ccac9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions
  1. +2
    -2
      .ci-config.json
  2. +2
    -0
      requirements-dev.txt
  3. +1
    -0
      script/cibuild-setup-py

+ 2
- 2
.ci-config.json View File

@ -1,4 +1,4 @@
{
"python_version_current": "3.11",
"python_versions_active": ["3.8", "3.9", "3.10", "3.11"]
"python_version_current": "3.12",
"python_versions_active": ["3.8", "3.9", "3.10", "3.11", "3.12"]
}

+ 2
- 0
requirements-dev.txt View File

@ -40,6 +40,8 @@ requests-toolbelt==1.0.0
requests==2.31.0
rfc3986==2.0.0
rich==13.6.0
setuptools==68.2.2
twine==4.0.2
urllib3==2.0.6
wheel==0.41.2
zipp==3.17.0

+ 1
- 0
script/cibuild-setup-py View File

@ -7,6 +7,7 @@ echo "## create test venv ######################################################
TMP_DIR=$(mktemp -d -t ci-XXXXXXXXXX)
python3 -m venv $TMP_DIR
. "$TMP_DIR/bin/activate"
pip install setuptools
echo "## environment & versions ######################################################"
python --version
pip --version


Loading…
Cancel
Save