Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand All @@ -27,8 +27,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install nose
python -m pip install pynose
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with nose
- name: Test with pynose
run: |
nosetests
pynose
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ The most up-to-date lexer and highlighter for [_Mathematica_](http://wolfram.com
source code using the [pygments](http://pygments.org) engine.

![](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)
![](https://img.shields.io/badge/version-0.3.5-yellow.svg?style=flat-square)
![](https://img.shields.io/badge/version-0.4.0-yellow.svg?style=flat-square)
![](https://img.shields.io/travis/rsmenon/pygments-mathematica/master.svg?style=flat-square)
![](https://img.shields.io/badge/python-3.5%2B-lightgrey.svg?style=flat-square)
![](https://img.shields.io/badge/python-3.9%2B-lightgrey.svg?style=flat-square)
![](https://img.shields.io/pypi/v/pygments-mathematica.svg?style=flat-square)
[![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)
## Features

It can currently lex and highlight:
Expand Down
3 changes: 1 addition & 2 deletions mathematica/builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -7325,7 +7325,6 @@
u'ZoomFactor',
u'ZTest',
u'ZTransform',
u'$',
u'$Aborted',
u'$ActivationGroupID',
u'$ActivationKey',
Expand Down Expand Up @@ -8038,4 +8037,4 @@
u'℘', # \[WeierstrassP]
u'ξ', # \[Xi]
u'ζ', # \[Zeta]
}
}
7 changes: 4 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
nose==1.3.7
Pygments==2.7.4
wheel==0.26.0
build==1.2.2.post1
packaging==24.2
Pygments==2.19.1
pyproject_hooks==1.2.0
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

setup(
name='pygments-mathematica',
version='0.3.5',
version='0.4.0',
description='Mathematica/Wolfram Language Lexer for Pygments',
long_description=__doc__,
author='rsmenon',
Expand All @@ -43,11 +43,9 @@
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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 :: Text Processing',
'Topic :: Utilities',
],
Expand Down