diff --git a/.taskcluster.yml b/.taskcluster.yml index fbc9639..86d23a3 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -69,6 +69,10 @@ tasks: version: "3.11" env: TOXENV: py311,lint + - name: tests python 3.12 + version: "3.12" + env: + TOXENV: py312,lint - name: semantic-release version: "3.8" script: diff --git a/setup.py b/setup.py deleted file mode 100755 index da804eb..0000000 --- a/setup.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python -# -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at https://mozilla.org/MPL/2.0/. -"""setuptools install script""" - -import site - -from setuptools import setup - -site.ENABLE_USER_SITE = True - - -if __name__ == "__main__": - setup() diff --git a/tox.ini b/tox.ini index 978e007..8e452bc 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,39,310,311},lint +envlist = py{38,39,310,311,312},lint skip_missing_interpreters = true tox_pip_extensions_ext_venv_update = true