Browse Source

Drop EOL Python 3.7

tags/v0.6.6
Ben Kurtovic 7 months ago
parent
commit
8bce6ff379
9 changed files with 8 additions and 19 deletions
  1. +2
    -3
      .github/workflows/build-wheels.yml
  2. +0
    -1
      .github/workflows/run-tests.yml
  3. +1
    -1
      CHANGELOG
  4. +1
    -1
      LICENSE
  5. +1
    -1
      README.rst
  6. +0
    -8
      appveyor.yml
  7. +1
    -1
      docs/changelog.rst
  8. +1
    -1
      docs/index.rst
  9. +1
    -2
      setup.py

+ 2
- 3
.github/workflows/build-wheels.yml View File

@@ -11,11 +11,11 @@ jobs:
- name: Build manylinux2014 x86-64 wheels
uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_x86_64
with:
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
- name: Build manylinux 2014 aarch64 wheels
uses: earwig/python-wheels-manylinux-build@latest-manylinux2014_aarch64
with:
python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
- uses: actions/upload-artifact@v3
with:
name: wheels
@@ -33,7 +33,6 @@ jobs:
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'


+ 0
- 1
.github/workflows/run-tests.yml View File

@@ -7,7 +7,6 @@ jobs:
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'


+ 1
- 1
CHANGELOG View File

@@ -1,6 +1,6 @@
v0.7 (unreleased):

- ...
- Dropped support for end-of-life Python 3.7.

v0.6.5 (released September 5, 2023):



+ 1
- 1
LICENSE View File

@@ -1,4 +1,4 @@
Copyright (C) 2012-2019 Ben Kurtovic <ben.kurtovic@gmail.com>
Copyright (C) 2012-2023 Ben Kurtovic <ben.kurtovic@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal


+ 1
- 1
README.rst View File

@@ -11,7 +11,7 @@ mwparserfromhell

**mwparserfromhell** (the *MediaWiki Parser from Hell*) is a Python package
that provides an easy-to-use and outrageously powerful parser for MediaWiki_
wikicode. It supports Python 3.5+.
wikicode. It supports Python 3.8+.

Developed by Earwig_ with contributions from `Σ`_, Legoktm_, and others.
Full documentation is available on ReadTheDocs_. Development occurs on GitHub_.


+ 0
- 8
appveyor.yml View File

@@ -21,14 +21,6 @@ environment:
secure: w9ql7j0y9fatBSCgsUn1MDFsDvc0WXY88K8hNBHZzq6uBPxWMd7ZblMZSJv4Nywr6ViudQCn4qM/Emm7R8UgKGnHeSX+B8V41ywKgbszEh9wKtuMWI5htsfjaD3Yib/dz/ynGDKEf3nkE6rP2j9bfVLMUARHmvztL+G2rUrjj2GQTqs0ddJ16OudDo2aA/ClsW1Zexc5GPgkun5+JFneUeVV59/bwORGfSjgEtoMyIQ8mdFs/My4sImC+jXFfSHD6s08anIuNX5KO6SSg5mwcxZq+1PweceHivJ87VvCI7w=

matrix:
- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8"
PYTHON_ARCH: "32"


+ 1
- 1
docs/changelog.rst View File

@@ -7,7 +7,7 @@ v0.7
Unreleased
(`changes <https://github.com/earwig/mwparserfromhell/compare/v0.6.5...main>`__):

- ...
- Dropped support for end-of-life Python 3.7.

v0.6.5
------


+ 1
- 1
docs/index.rst View File

@@ -3,7 +3,7 @@ MWParserFromHell v\ |version| Documentation

:mod:`mwparserfromhell` (the *MediaWiki Parser from Hell*) is a Python package
that provides an easy-to-use and outrageously powerful parser for MediaWiki_
wikicode. It supports Python 3.5+.
wikicode. It supports Python 3.8+.

Developed by Earwig_ with contributions from `Σ`_, Legoktm_, and others.
Development occurs on GitHub_.


+ 1
- 2
setup.py View File

@@ -87,7 +87,7 @@ setup(
else [],
tests_require=["pytest"],
version=__version__,
python_requires=">= 3.7",
python_requires=">= 3.8",
author="Ben Kurtovic",
author_email="ben.kurtovic@gmail.com",
url="https://github.com/earwig/mwparserfromhell",
@@ -105,7 +105,6 @@ setup(
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",


Loading…
Cancel
Save