File tree 4 files changed +10
-6
lines changed
4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ all releases are available on `PyPI <https://pypi.org/project/pytask-stata>`_ an
7
7
`Anaconda.org <https://anaconda.org/pytask/pytask-stata >`_.
8
8
9
9
10
+ 0.0.6 - 2021-03-05
11
+ ------------------
12
+
13
+ - :gh: `10 ` fixes the version of the package.
14
+
15
+
10
16
0.0.5 - 2021-03-04
11
17
------------------
12
18
Original file line number Diff line number Diff line change 1
1
name : pytask-stata
2
+
2
3
channels :
3
4
- conda-forge
4
- - pytask
5
+
5
6
dependencies :
6
7
- python
7
8
- pip
@@ -24,4 +25,3 @@ dependencies:
24
25
- pytest-cov
25
26
- pytest-xdist
26
27
- tox-conda
27
- - versioneer
Original file line number Diff line number Diff line change 19
19
setup (
20
20
name = "pytask-stata" ,
21
21
version = versioneer .get_version (),
22
- cmd_class = versioneer .get_cmdclass (),
22
+ cmdclass = versioneer .get_cmdclass (),
23
23
description = "Execute do-files with Stata and pytask." ,
24
24
long_description = README ,
25
25
long_description_content_type = "text/x-rst" ,
45
45
package_dir = {"" : "src" },
46
46
entry_points = {"pytask" : ["pytask_stata = pytask_stata.plugin" ]},
47
47
include_package_data = True ,
48
- zip_false = False ,
48
+ zip_safe = False ,
49
49
)
Original file line number Diff line number Diff line change 1
- __version__ = "0.0.3"
2
-
3
1
from ._version import get_versions
4
2
5
3
__version__ = get_versions ()["version" ]
You can’t perform that action at this time.
0 commit comments