Skip to content

Commit

Permalink
Merge pull request #45 from UC-Davis-molecular-computing/dev
Browse files Browse the repository at this point in the history
bumped version to 0.5.0
  • Loading branch information
dave-doty authored May 20, 2020
2 parents eb8be39 + 2a940f2 commit 0cb1a1e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Binary file added dist/scadnano-0.5.0.tar.gz
Binary file not shown.
3 changes: 2 additions & 1 deletion publish_to_pypi.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ rem https://medium.com/@joel.barmettler/how-to-upload-your-python-package-to-pyp

rem !!!change setup.py to current version number!!!
python setup.py sdist
twine upload dist/*
rem twine upload dist/*
twine upload dist/scadnano-x.x.x.tar.gz
2 changes: 1 addition & 1 deletion scadnano/scadnano.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ class Grid(str, enum.Enum):
##########################################################################
# constants

current_version: str = "0.4.0"
current_version: str = "0.5.0"
initial_version: str = "0.1.0"

default_idt_scale = "25nm"
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

from distutils.core import setup

import scadnano

# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
Expand All @@ -10,7 +12,7 @@

setup(name='scadnano',
packages=['scadnano'],
version='0.4.0',
version=scadnano.current_version,
license='MIT',
description="Python scripting library for generating designs readable by scadnano.",
author="David Doty",
Expand Down

0 comments on commit 0cb1a1e

Please sign in to comment.