Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Scheffler
py_tools_ds
Commits
e705caa6
Commit
e705caa6
authored
Nov 15, 2022
by
Daniel Scheffler
Browse files
Merge branch 'maintenance/drop_py36' into 'main'
Drop Python 3.6 due to EOL status. See merge request
!37
parents
577f23c7
13cb655c
Pipeline
#52952
passed with stages
in 2 minutes and 18 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CONTRIBUTING.rst
View file @
e705caa6
...
...
@@ -101,7 +101,7 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python
3.6,
3.7, 3.8. 3.9, and for PyPy. Check
3. The pull request should work for Python 3.7, 3.8. 3.9,
3.10
and for PyPy. Check
https://travis-ci.org/danschef/py_tools_ds/pull_requests
and make sure that the tests pass for all supported Python versions.
...
...
HISTORY.rst
View file @
e705caa6
...
...
@@ -2,6 +2,12 @@
History
=======
0.21.0 (2022-11-15)
-------------------
* Dropped Python 3.6 support due to EOL status.
0.20.2 (2022-02-10)
-------------------
...
...
docs/installation.rst
View file @
e705caa6
...
...
@@ -57,8 +57,8 @@ you through the process.
.. note::
py_tools_ds has been tested with Python 3.
6
+.,
i.e., should be fully compatible to all Python versions from 3.
6
onwards.
py_tools_ds has been tested with Python 3.
7
+.,
i.e., should be fully compatible to all Python versions from 3.
7
onwards.
.. _pip: https://pip.pypa.io
...
...
py_tools_ds/version.py
View file @
e705caa6
...
...
@@ -22,5 +22,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__
=
'0.2
0.2
'
__versionalias__
=
'2022
0210
_01'
__version__
=
'0.2
1.0
'
__versionalias__
=
'2022
1115
_01'
setup.py
View file @
e705caa6
...
...
@@ -71,12 +71,12 @@ setup(
'License :: OSI Approved :: Apache Software License'
,
'Natural Language :: English'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Programming Language :: Python :: 3.9'
,
'Programming Language :: Python :: 3.10'
,
],
python_requires
=
'>3.
6
'
,
python_requires
=
'>3.
7
'
,
test_suite
=
'tests'
,
tests_require
=
test_requirements
,
setup_requires
=
setup_requirements
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment