Skip to content
Snippets Groups Projects
Commit 88aa1e12 authored by Ian Bell's avatar Ian Bell
Browse files

Bump version to dev

parent f342ee01
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ Written by Ian Bell, NIST. ...@@ -17,6 +17,7 @@ Written by Ian Bell, NIST.
## Changelog ## Changelog
0.3.0 Add integration options to the tracing of the critical curve; fix ``__version__`` 0.3.0 Add integration options to the tracing of the critical curve; fix ``__version__``
0.2.0 Add fluid files to the python package 0.2.0 Add fluid files to the python package
## Install ## Install
......
...@@ -21,8 +21,8 @@ else: ...@@ -21,8 +21,8 @@ else:
raise KeyError(f'You must set the twine environment variable {k}') raise KeyError(f'You must set the twine environment variable {k}')
def build(): def build():
""" Build the wheel """
for pyver in ['3.7','3.8','3.9']: for pyver in ['3.7','3.8','3.9']:
# Build the wheel if it is not already built
abbrv = pyver.replace('.', '') abbrv = pyver.replace('.', '')
condaenv = f'conda-{pyver}' condaenv = f'conda-{pyver}'
subprocess.check_call(f'conda create -y -n {condaenv} python={pyver}', shell=True) subprocess.check_call(f'conda create -y -n {condaenv} python={pyver}', shell=True)
......
...@@ -11,7 +11,7 @@ from setuptools import setup, Extension ...@@ -11,7 +11,7 @@ from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion from distutils.version import LooseVersion
VERSION = '0.3.0' VERSION = '0.3.1.dev'
with open('interface/teqpversion.hpp','w') as fpver: with open('interface/teqpversion.hpp','w') as fpver:
fpver.write(f'#include <string>\nconst std::string TEQPVERSION = "{VERSION}";') fpver.write(f'#include <string>\nconst std::string TEQPVERSION = "{VERSION}";')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment