diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 0083d93..f1f06ab 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -18,10 +18,14 @@ jobs: python: "3.9" - runs_on: macos-latest python: "3.10" + - runs_on: macos-latest + python: "3.11" + - runs_on: apple-silicon-m1 + python: "3.9" - runs_on: apple-silicon-m1 - python: "3.9.11" + python: "3.10" - runs_on: apple-silicon-m1 - python: "3.10.3" + python: "3.11" steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python }} diff --git a/setup.py b/setup.py index 3800269..61ae110 100644 --- a/setup.py +++ b/setup.py @@ -134,10 +134,11 @@ def tree(source, allowed_ext=data_allowed_ext, tree_name='share/pyobjus-'): 'License :: OSI Approved :: MIT License', 'Natural Language :: English', 'Operating System :: MacOS', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Software Development :: Libraries :: Application Frameworks' ], )