Skip to content

Commit

Permalink
Merge pull request #50 from ContinuumIO/versioneer
Browse files Browse the repository at this point in the history
fix packaging
  • Loading branch information
AlbertDeFusco authored Aug 15, 2024
2 parents c8f80c1 + 6358d87 commit a83a2ad
Show file tree
Hide file tree
Showing 6 changed files with 1,053 additions and 435 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tranquilizer/_version.py export-subst
6 changes: 3 additions & 3 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ build:

requirements:
run:
- python >=3.6, <3.10
- python >=3.6, <3.12
- flask
- werkzeug >=0.15
- werkzeug >=0.15,<2.1
- python-dateutil
- flask-restx
- flask-cors
- flask-jwt-extended>=4
build:
- python >=3.6, <3.10
- python >=3.6, <3.12
- setuptools

test:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

install_requires=[
'flask',
'werkzeug>=0.15',
'werkzeug>=0.15,<2.1',
'flask-restx',
'flask-cors',
'python-dateutil',
Expand Down
5 changes: 2 additions & 3 deletions tranquilizer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'''Tranquilizer'''
from .decorator import tranquilize

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']
Loading

0 comments on commit a83a2ad

Please sign in to comment.