Skip to content

Commit

Permalink
Get ready for release 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Jun 26, 2021
1 parent 2fe5e13 commit 72633b5
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
- name: Test Mathics Scanner
run: |
pip install -r requirements-dev.txt
pip install -r requirements-extra.txt
pip install -r requirements-full.txt
python -m mathics_scanner.generate.build_tables
make check
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
- name: Test Mathics Scanner
run: |
pip install -r requirements-dev.txt
pip install -r requirements-extra.txt
pip install -r requirements-full.txt
python -m mathics_scanner.generate.build_tables
make check
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ jobs:
- name: Test Mathics
run: |
pip install -r requirements-dev.txt
pip install -r requirements-extra.txt
pip install -r requirements-full.txt
python mathics_scanner/generate/build_tables.py
py.test test
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGES
=======

1.2.2
-----

Redo for packaging problems.

Many thanks to Victor the packager for AUR for pointing this out.

1.2.1
-----

Expand Down
1 change: 0 additions & 1 deletion mathics_scanner/data/characters.json

This file was deleted.

2 changes: 1 addition & 1 deletion mathics_scanner/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# well as importing into Python. That's why there is no
# space around "=" below.
# fmt: off
__version__="1.2.2.dev0" # noqa
__version__="1.2.2" # noqa
2 changes: 0 additions & 2 deletions requirements-extra.txt

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def read(*rnames):


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

0 comments on commit 72633b5

Please sign in to comment.