Skip to content

Commit 11e576b

Browse files
authored
Fix the minimum Python and pytask version. (#19)
1 parent bd11cbf commit 11e576b

File tree

4 files changed

+8
-52
lines changed

4 files changed

+8
-52
lines changed

.conda/meta.yaml

-48
This file was deleted.

.pre-commit-config.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ repos:
88
- id: check-merge-conflict
99
- id: check-vcs-permalinks
1010
- id: check-yaml
11-
exclude: meta.yaml
1211
- id: debug-statements
1312
- id: end-of-file-fixer
1413
- id: fix-byte-order-marker

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/conda-forge/pytask-stata>`_.
88

99

10+
0.1.2 - 2022-02-08
11+
------------------
12+
13+
- :gh:`19` fixes the minimum python and pytask version.
14+
15+
1016
0.1.1 - 2022-02-07
1117
------------------
1218

setup.cfg

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ classifiers =
1515
Operating System :: OS Independent
1616
Programming Language :: Python :: 3
1717
Programming Language :: Python :: 3 :: Only
18-
Programming Language :: Python :: 3.6
1918
Programming Language :: Python :: 3.7
2019
Programming Language :: Python :: 3.8
2120
Programming Language :: Python :: 3.9
@@ -30,8 +29,8 @@ project_urls =
3029
packages = find:
3130
install_requires =
3231
click
33-
pytask>=0.1.0
34-
python_requires = >=3.6
32+
pytask>=0.1.7
33+
python_requires = >=3.7
3534
include_package_data = True
3635
package_dir = =src
3736
zip_safe = False

0 commit comments

Comments
 (0)