Skip to content

Commit

Permalink
bump version in setup.py for 3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
burlen committed Jan 25, 2020
1 parent 0cdf5cd commit 4ed5087
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# when compiled outside of the git repo we must set the version
# manually. Also note that these must be unique per upload to PyPi
# so be sure to use an 'rcX' for testing
teca_version = "2.2.2"
teca_version = "3.0.0"

class CMakeExtension(Extension):
def __init__(self, name, sourcedir=''):
Expand Down Expand Up @@ -63,7 +63,7 @@ def build_extension(self, ext):
raise RuntimeError('Windows is currrently unsupprted due to a lack of interest/funding')
else:
cmake_args += ['-DCMAKE_BUILD_TYPE=' + cfg]
build_args += ['--', '-j20']
build_args += ['--', '-j%d'%(nj)]
install_args += ['--', '-j%d'%(nj), 'install']

# make the build directory
Expand Down

0 comments on commit 4ed5087

Please sign in to comment.