Skip to content

Commit

Permalink
Merge pull request #49 from arm61/sansona-master
Browse files Browse the repository at this point in the history
fixing appveyor
  • Loading branch information
Andrew McCluskey authored Jun 3, 2019
2 parents 303f8cc + 1756b67 commit 54fc9d4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ environment:
install:
# We need wheel installed to build wheels
- "SET PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- "%PYTHON%\\python.exe -m pip install wheel"
- "%PYTHON%\\python.exe -m pip install -U twine wheel setuptools"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "set PATH=%PATH%;C:\"%PYTHON%\\Scripts"

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# built documents.
#
# The short X.Y version.
version = '1.3.3'
version = '1.3.4'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion pylj/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def __version__(): # pragma: no cover
"""This will print the number of the pylj version currently in use."""
major = 1
minor = 3
micro = 3
micro = 4
print("pylj-{:d}.{:d}.{:d}".format(major, minor, micro))


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# versioning
MAJOR = 1
MINOR = 3
MICRO = 3
MICRO = 4
ISRELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)

Expand Down

0 comments on commit 54fc9d4

Please sign in to comment.