Skip to content

Commit

Permalink
Drop Python 3.6 and formally support 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Oct 17, 2022
1 parent f65013d commit 841b538
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
max-parallel: 4
matrix:
platform: [ubuntu-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, '3.10']
include:
- python-version: 3.6
tox-env: py36
- python-version: 3.7
tox-env: py37
- python-version: 3.8
tox-env: py38
- python-version: 3.9
tox-env: py39
- python-version: '3.10'
tox-env: py36

env:
TOXENV: ${{ matrix.tox-env }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
python-version: ['3.10']

env:
TOXENV: lint
Expand All @@ -88,7 +88,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
python-version: ['3.10']

env:
TOXENV: documents
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: 3.9
python-version: '3.10'
- name: Package
run: |
pip install --upgrade setuptools wheel
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.0

- **NEW**: Drop Python 3.6 and officially support 3.10.

## 1.0.3

- **FIX**: Remove version check which is not compatible with Material Insiders. Material will completely be responsible
Expand Down
2 changes: 1 addition & 1 deletion materialx/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,5 +185,5 @@ def parse_version(ver, pre=False):
return Version(major, minor, micro, release, pre, post, dev)


__version_info__ = Version(1, 0, 3, "final")
__version_info__ = Version(1, 1, 0, "final")
__version__ = __version_info__._get_canonical()
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_description():
long_description_content_type='text/markdown',
author='Isaac Muse',
author_email='Isaac.Muse@gmail.com',
python_requires='>=3.6',
python_requires='>=3.7',
url='https://github.com/facelessuser/mkdocs-material-extensions',
packages=find_packages(exclude=['tools', 'test*']),
install_requires=get_requirements("requirements/project.txt"),
Expand All @@ -62,10 +62,10 @@ def get_description():
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'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',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Filters',
Expand Down

0 comments on commit 841b538

Please sign in to comment.