Skip to content

Commit 75e53d2

Browse files
authored
Fix unidentifiable version. (#10)
1 parent dbffd0a commit 75e53d2

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGES.rst

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ all releases are available on `PyPI <https://pypi.org/project/pytask-stata>`_ an
77
`Anaconda.org <https://anaconda.org/pytask/pytask-stata>`_.
88

99

10+
0.0.6 - 2021-03-05
11+
------------------
12+
13+
- :gh:`10` fixes the version of the package.
14+
15+
1016
0.0.5 - 2021-03-04
1117
------------------
1218

environment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: pytask-stata
2+
23
channels:
34
- conda-forge
4-
- pytask
5+
56
dependencies:
67
- python
78
- pip
@@ -24,4 +25,3 @@ dependencies:
2425
- pytest-cov
2526
- pytest-xdist
2627
- tox-conda
27-
- versioneer

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
setup(
2020
name="pytask-stata",
2121
version=versioneer.get_version(),
22-
cmd_class=versioneer.get_cmdclass(),
22+
cmdclass=versioneer.get_cmdclass(),
2323
description="Execute do-files with Stata and pytask.",
2424
long_description=README,
2525
long_description_content_type="text/x-rst",
@@ -45,5 +45,5 @@
4545
package_dir={"": "src"},
4646
entry_points={"pytask": ["pytask_stata = pytask_stata.plugin"]},
4747
include_package_data=True,
48-
zip_false=False,
48+
zip_safe=False,
4949
)

src/pytask_stata/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
__version__ = "0.0.3"
2-
31
from ._version import get_versions
42

53
__version__ = get_versions()["version"]

0 commit comments

Comments
 (0)