Skip to content

Commit 5586ea3

Browse files
DEP: remove the support for Python 3.5 and 3.6
1 parent 46b43ef commit 5586ea3

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

Diff for: .travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ os:
77

88
env:
99
- MYUSEMC=true MYPYTHON_VERSION=2.7
10-
- MYUSEMC=true MYPYTHON_VERSION=3.5
11-
- MYUSEMC=true MYPYTHON_VERSION=3.6
1210
- MYUSEMC=true MYPYTHON_VERSION=3.7
1311
- MYUSEMC=true MYPYTHON_VERSION=3.8
1412
- MYUSEMC=true MYPYTHON_VERSION=3.9

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
### Removed
1414

15+
- Remove the support for Python 3.5, 3.6.
16+
1517
### Fixed
1618

1719
## Version 3.0.2 - 2022-10-12

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ user manual at http://diffpy.github.io/diffpy.structure.
2727
REQUIREMENTS
2828
------------------------------------------------------------------------
2929

30-
The diffpy.structure package requires Python 3.5 or later or 2.7 and
30+
The diffpy.structure package requires Python 3.7 or later or 2.7 and
3131
the following software:
3232

3333
* ``setuptools`` - software distribution tools for Python

Diff for: setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# Use this version when git data are not available, like in git zip archive.
1414
# Update when tagging a new release.
15-
FALLBACK_VERSION = '3.0.1.post0'
15+
FALLBACK_VERSION = '3.1.0'
1616

1717
# determine if we run with Python 3.
1818
PY3 = (sys.version_info[0] == 3)
@@ -116,8 +116,6 @@ def getversioncfg():
116116
'Operating System :: POSIX',
117117
'Operating System :: Unix',
118118
'Programming Language :: Python :: 2.7',
119-
'Programming Language :: Python :: 3.5',
120-
'Programming Language :: Python :: 3.6',
121119
'Programming Language :: Python :: 3.7',
122120
'Programming Language :: Python :: 3.8',
123121
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)