File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 57
57
runs-on : ubuntu-20.04
58
58
strategy :
59
59
matrix : # using `matrix` to define a constant
60
- package : ['julia==0.5.7.dev ']
60
+ package : ['julia==0.5.7']
61
61
steps :
62
62
- name : Set up Python 3.9
63
63
uses : actions/setup-python@v1
Original file line number Diff line number Diff line change 16
16
17
17
commands =
18
18
shell-retry --backoff =2 --interval-max =20 --retry-count =30 --verbose -- \
19
- pip install --index-url https://test.pypi.org/simple/ julia ==0.5.7.dev
19
+ pip install --index-url https://test.pypi.org/simple/ julia ==0.5.7
20
20
21
21
python -c " from julia import install; install()"
22
22
python -m julia.runtests -- \
Original file line number Diff line number Diff line change 27
27
# The short X.Y version
28
28
version = '0.5.7'
29
29
# The full version, including alpha/beta/rc tags
30
- release = '0.5.7.dev '
30
+ release = '0.5.7'
31
31
32
32
33
33
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 1
1
# This file is executed via setup.py and imported via __init__.py
2
2
3
- __version__ = "0.5.7.dev "
3
+ __version__ = "0.5.7"
4
4
# For Python versioning scheme, see:
5
5
# https://www.python.org/dev/peps/pep-0440/#version-scheme
You can’t perform that action at this time.
0 commit comments