File tree Expand file tree Collapse file tree 4 files changed +24
-6
lines changed
Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 66
77env :
88 - MYUSEMC=true MYPYTHON_VERSION=2.7
9- - MYUSEMC=true MYPYTHON_VERSION=3.5
10- - MYUSEMC=true MYPYTHON_VERSION=3.6
119 - MYUSEMC=true MYPYTHON_VERSION=3.7
10+ - MYUSEMC=true MYPYTHON_VERSION=3.8
11+ - MYUSEMC=true MYPYTHON_VERSION=3.9
12+ - MYUSEMC=true MYPYTHON_VERSION=3.10
1213 - MYUSEMC=false
1314
1415git :
Original file line number Diff line number Diff line change 11# Release notes
22
3+ ## Version 3.1.0 – 2022-12-09
4+
5+ ### Added
6+
7+ - Compatibility with Python 3.10, 3.9, 3.8
8+
9+ ### Changed
10+
11+ ### Deprecated
12+
13+ ### Removed
14+
15+ - Remove the support for Python 3.5, 3.6.
16+
17+ ### Fixed
18+
319## Version 3.0.0 -- 2019-03-12
420
521Differences from version 1.2.2.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ http://diffpy.github.io/diffpy.utils.
2323REQUIREMENTS
2424------------------------------------------------------------------------
2525
26- The diffpy.utils package requires Python 3.4 or later or 2.7 and
26+ The diffpy.utils package requires Python 3.7 or later or 2.7 and
2727the following software:
2828
2929* ``setuptools `` - tools for installing Python packages
Original file line number Diff line number Diff line change 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.0.post0 '
15+ FALLBACK_VERSION = '3.1.0 '
1616
1717# versioncfgfile holds version data for git commit hash and date.
1818# It must reside in the same directory as version.py.
@@ -111,9 +111,10 @@ def getversioncfg():
111111 'Operating System :: POSIX' ,
112112 'Operating System :: Unix' ,
113113 'Programming Language :: Python :: 2.7' ,
114- 'Programming Language :: Python :: 3.5' ,
115- 'Programming Language :: Python :: 3.6' ,
116114 'Programming Language :: Python :: 3.7' ,
115+ 'Programming Language :: Python :: 3.8' ,
116+ 'Programming Language :: Python :: 3.9' ,
117+ 'Programming Language :: Python :: 3.10' ,
117118 'Topic :: Scientific/Engineering :: Physics' ,
118119 ],
119120)
You can’t perform that action at this time.
0 commit comments