Browse Source

Merge branch 'master' of https://lemma.codes/Lemma

master
Trevor Irons 4 years ago
parent
commit
8399fd6a60
2 changed files with 5 additions and 5 deletions
  1. 2
    2
      python/publish.sh
  2. 3
    3
      python/setup.py

+ 2
- 2
python/publish.sh View File

@@ -2,8 +2,8 @@
2 2
 rm -rf build dist clean pyLemma.egg.info
3 3
 python setup.py build
4 4
 python setup.py bdist_wheel
5
-auditwheel repair ./dist/pyLemma*.whl -w ./clean
6
-twine upload clean/*
5
+#auditwheel repair ./dist/pyLemma*.whl -w ./clean
6
+#twine upload build/* #clean/*
7 7
 
8 8
 #rm -rf dist
9 9
 #python setup.py build

+ 3
- 3
python/setup.py View File

@@ -3,8 +3,8 @@ from setuptools.command.install import install
3 3
 from setuptools.dist import Distribution
4 4
 import sys
5 5
 
6
-if sys.version_info < (3,0):
7
-  sys.exit('Sorry, Python < 3.0 is not supported')
6
+if sys.version_info < (3,6):
7
+  sys.exit('Sorry, Python < 3.6 is not supported')
8 8
 
9 9
 class BinaryDistribution(Distribution):
10 10
     """Distribution which always forces a binary package with platform name"""
@@ -21,7 +21,7 @@ class InstallPlatlib(install):
21 21
 
22 22
 setup(
23 23
   name             = 'pyLemma',
24
-  version          = '0.0.11', 
24
+  version          = '0.0.13', 
25 25
   author           = 'Trevor Irons and others',
26 26
   author_email     = 'Trevor.Irons@lemmasoftware.org',
27 27
   description      = 'A short description of the app/lib',

Loading…
Cancel
Save