Skip to content

Commit

Permalink
new tag
Browse files Browse the repository at this point in the history
  • Loading branch information
scrgiorgio committed Apr 7, 2019
1 parent ca3f824 commit 8ba673a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CMake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@
import glob
import atexit
import setuptools

WIN32=platform.system()=="Windows" or platform.system()=="win32"
APPLE=platform.system()=="Darwin"

PROJECT_NAME="OpenVisus"

# use a number like 1.0.xxxx for travis testing
# otherwise use a number greater than the one uploaded in pip
# PROJECT_VERSION="1.0.1000"
PROJECT_VERSION="1.3.22"
PROJECT_VERSION="1.3.24"

# ////////////////////////////////////////////////////////////////////
def findFilesInCurrentDirectory():
Expand All @@ -22,8 +25,11 @@ def findFilesInCurrentDirectory():
for dirpath, __dirnames__, filenames in os.walk("."):
for it in filenames:
filename= os.path.abspath(os.path.join(dirpath, it))
extension=os.path.splitext(filename)[1]
if filename.startswith(os.path.abspath('./dist')): continue
if "__pycache__" in filename: continue
if WIN32 and extension==".ilk": continue # ignore Visual studio incremental link files
if WIN32 and extension==".pdb": continue # otherwise dist is too big
files.append(filename)
return files

Expand Down
2 changes: 1 addition & 1 deletion conda/openvisus/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: openvisus
version: 1.3.23
version: 1.3.24

source:
path: ../..
Expand Down

0 comments on commit 8ba673a

Please sign in to comment.