1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

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
This commit is contained in:
Ross McFarland
2023-10-10 12:38:28 -07:00
committed by GitHub
3 changed files with 5 additions and 2 deletions

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"]
}

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

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