From 5dcb90f25050059beb38722b7937691635410139 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Tue, 8 Feb 2022 00:19:07 +0100 Subject: [PATCH 1/3] Fix the minimum Python and pytask version. --- CHANGES.rst | 6 ++++++ setup.cfg | 5 ++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8ced206..700e92b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,12 @@ all releases are available on `PyPI `_ an `Anaconda.org `_. +0.1.2 - 2022-02-08 +------------------ + +- :gh:`18` fixes the minimum python and pytask version. + + 0.1.1 - 2022-02-07 ------------------ diff --git a/setup.cfg b/setup.cfg index 1867a7f..d42a5b7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,6 @@ classifiers = Operating System :: OS Independent Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 @@ -30,8 +29,8 @@ project_urls = packages = find: install_requires = click - pytask>=0.1.0 -python_requires = >=3.6 + pytask>=0.1.7 +python_requires = >=3.7 include_package_data = True package_dir = =src zip_safe = False From 87c203c6781d82e5a37bef808a883e5c7286c1b0 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Tue, 8 Feb 2022 00:19:48 +0100 Subject: [PATCH 2/3] fix pr link. --- CHANGES.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 700e92b..f8a3230 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,7 +10,7 @@ all releases are available on `PyPI `_ an 0.1.2 - 2022-02-08 ------------------ -- :gh:`18` fixes the minimum python and pytask version. +- :gh:`19` fixes the minimum python and pytask version. 0.1.1 - 2022-02-07 From 7f3f791f16f3531da0ed3290334e7126d6ff0572 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Tue, 8 Feb 2022 00:25:54 +0100 Subject: [PATCH 3/3] Remove .conda. --- .conda/meta.yaml | 48 ----------------------------------------- .pre-commit-config.yaml | 1 - 2 files changed, 49 deletions(-) delete mode 100644 .conda/meta.yaml diff --git a/.conda/meta.yaml b/.conda/meta.yaml deleted file mode 100644 index 80784d5..0000000 --- a/.conda/meta.yaml +++ /dev/null @@ -1,48 +0,0 @@ -{% set data = load_setup_py_data() %} - -package: - name: pytask-stata - version: {{ data.get('version') }} - -source: - # git_url is nice in that it won't capture devenv stuff. However, it only captures - # committed code, so pay attention. - git_url: ../ - -build: - noarch: python - number: 0 - script: {{ PYTHON }} setup.py install --single-version-externally-managed --record record.txt - -requirements: - host: - - python - - pip - - setuptools - - run: - - python >=3.6 - - pytask >=0.0.9 - -test: - requires: - - pytest - - pytask-parallel >=0.0.4 - source_files: - - tox.ini - - tests - commands: - - pytask --version - - pytask --help - - pytask markers - - pytask clean - - pytask collect - - - pytest tests - -about: - home: https://github.com/pytask-dev/pytask-stata - license: MIT - license_file: LICENSE - summary: Execute do-files with Stata. - dev_url: https://github.com/pytask-dev/pytask-stata/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 277c4b8..b068930 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,7 +8,6 @@ repos: - id: check-merge-conflict - id: check-vcs-permalinks - id: check-yaml - exclude: meta.yaml - id: debug-statements - id: end-of-file-fixer - id: fix-byte-order-marker