Skip to content

Commit 72633b5

Browse files
committed
Get ready for release 1.2.2
1 parent 2fe5e13 commit 72633b5

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

.github/workflows/osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Test Mathics Scanner
3030
run: |
3131
pip install -r requirements-dev.txt
32-
pip install -r requirements-extra.txt
32+
pip install -r requirements-full.txt
3333
python -m mathics_scanner.generate.build_tables
3434
make check

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
2828
- name: Test Mathics Scanner
2929
run: |
3030
pip install -r requirements-dev.txt
31-
pip install -r requirements-extra.txt
31+
pip install -r requirements-full.txt
3232
python -m mathics_scanner.generate.build_tables
3333
make check

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Test Mathics
3030
run: |
3131
pip install -r requirements-dev.txt
32-
pip install -r requirements-extra.txt
32+
pip install -r requirements-full.txt
3333
python mathics_scanner/generate/build_tables.py
3434
py.test test

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
CHANGES
22
=======
33

4+
1.2.2
5+
-----
6+
7+
Redo for packaging problems.
8+
9+
Many thanks to Victor the packager for AUR for pointing this out.
10+
411
1.2.1
512
-----
613

mathics_scanner/data/characters.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

mathics_scanner/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# well as importing into Python. That's why there is no
66
# space around "=" below.
77
# fmt: off
8-
__version__="1.2.2.dev0" # noqa
8+
__version__="1.2.2" # noqa

requirements-extra.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def read(*rnames):
6464

6565

6666
extra_requires = []
67-
for line in open("requirements-extra.txt").read().split("\n"):
67+
for line in open("requirements-full.txt").read().split("\n"):
6868
if line and not line.startswith("#"):
6969
requires = re.sub(r"([^#]+)(\s*#.*$)?", r"\1", line)
7070
extra_requires.append(requires)

0 commit comments

Comments
 (0)