Skip to content

Commit 8ab5ffd

Browse files
committed
Remove support for python 2
1 parent ef7f782 commit 8ab5ffd

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ The most up-to-date lexer and highlighter for [_Mathematica_](http://wolfram.com
88
![](https://img.shields.io/travis/rsmenon/pygments-mathematica/master.svg?style=flat-square)
99
![](https://img.shields.io/badge/python-3.9%2B-lightgrey.svg?style=flat-square)
1010
![](https://img.shields.io/pypi/v/pygments-mathematica.svg?style=flat-square)
11-
[![tests](https://github.com/rsmenon/pygments-mathematica/actions/workflows/python-package.yml/badge.svg)](https://github.com/rsmenon/pygments-mathematica/actions/workflows/python-package.yml)
1211
## Features
1312

1413
It can currently lex and highlight:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[bdist_wheel]
2-
universal = 1
2+
universal = 0

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2016 rsmenon
2+
# Copyright (c) 2025 rsmenon
33
# Licensed under the MIT License (https://opensource.org/licenses/MIT)
44

55
u"""This is the most up-to-date lexer and highlighter for Mathematica/Wolfram Language source code \
@@ -22,7 +22,7 @@
2222
A Sass file containing the styles can be obtained from the package repository for use in static \
2323
website generators such as Jekyll, Octopress, Pelican, etc.
2424
25-
© 2016 rsmenon
25+
© 2025 rsmenon
2626
"""
2727

2828
from setuptools import setup
@@ -46,11 +46,13 @@
4646
'Programming Language :: Python :: 3.9',
4747
'Programming Language :: Python :: 3.10',
4848
'Programming Language :: Python :: 3.11',
49+
'Programming Language :: Python :: 3.12',
50+
'Programming Language :: Python :: 3.13',
4951
'Topic :: Text Processing',
5052
'Topic :: Utilities',
5153
],
5254
packages=['mathematica'],
53-
install_requires=['Pygments >= 2.7.4'],
55+
install_requires=['Pygments >= 2.19'],
5456
include_package_data=False,
5557
platforms=['any'],
5658
entry_points={

0 commit comments

Comments
 (0)