Skip to content

Commit

Permalink
Merge 8c68cf1 into 3af47da
Browse files Browse the repository at this point in the history
  • Loading branch information
coldfix committed Sep 8, 2020
2 parents 3af47da + 8c68cf1 commit fcf652b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:

env:
MADX_VERSION: 5.06.00
MADX_VERSION: 5.06.01

jobs:
build_linux:
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
- name: Install cpymad from wheel
run: |
set -ex
pip install -U pip
python -m pip install -U pip || sudo python -m pip install -U pip
pip install cpymad -f dist --no-index --no-deps
pip install cpymad
Expand Down
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
~~~~~~~~~

1.6.0
=====
Date: 04.09.2020

- update to MAD-X 5.06.01
- halfen linux wheels sizes by building with -fvisibility=hidden and -flto,
hopefully increasing performance
- internal improvements with the CI setup:
- CI tests more configurations than before
- CI tests should now run on pull-requests
- reduce complexity


1.5.0
=====
Date: 27.08.2020
Expand Down
4 changes: 2 additions & 2 deletions doc/installation/unix.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ programs:

Download the `latest MAD-X release`_ `from github`_::

wget https://github.com/MethodicalAcceleratorDesign/MAD-X/archive/5.06.00.tar.gz
tar -xzf MAD-X-5.06.00.tar.gz
wget https://github.com/MethodicalAcceleratorDesign/MAD-X/archive/5.06.01.tar.gz
tar -xzf MAD-X-5.06.01.tar.gz

or use directly the source code from master (unstable)::

Expand Down
2 changes: 1 addition & 1 deletion src/cpymad/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import unicode_literals

__title__ = 'cpymad'
__version__ = '1.5.0'
__version__ = '1.6.0'

__summary__ = 'Cython binding to MAD-X'
__uri__ = 'https://github.com/hibtc/cpymad'
Expand Down

0 comments on commit fcf652b

Please sign in to comment.