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
 rm -rf build dist clean pyLemma.egg.info
2
 rm -rf build dist clean pyLemma.egg.info
3
 python setup.py build
3
 python setup.py build
4
 python setup.py bdist_wheel
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
 #rm -rf dist
8
 #rm -rf dist
9
 #python setup.py build
9
 #python setup.py build

+ 3
- 3
python/setup.py View File

3
 from setuptools.dist import Distribution
3
 from setuptools.dist import Distribution
4
 import sys
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
 class BinaryDistribution(Distribution):
9
 class BinaryDistribution(Distribution):
10
     """Distribution which always forces a binary package with platform name"""
10
     """Distribution which always forces a binary package with platform name"""
21
 
21
 
22
 setup(
22
 setup(
23
   name             = 'pyLemma',
23
   name             = 'pyLemma',
24
-  version          = '0.0.11', 
24
+  version          = '0.0.13', 
25
   author           = 'Trevor Irons and others',
25
   author           = 'Trevor Irons and others',
26
   author_email     = 'Trevor.Irons@lemmasoftware.org',
26
   author_email     = 'Trevor.Irons@lemmasoftware.org',
27
   description      = 'A short description of the app/lib',
27
   description      = 'A short description of the app/lib',

Loading…
Cancel
Save