File tree Expand file tree Collapse file tree 5 files changed +26
-8
lines changed
Expand file tree Collapse file tree 5 files changed +26
-8
lines changed Original file line number Diff line number Diff line change 77
88env :
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
11+ - MYUSEMC=true MYPYTHON_VERSION=3.8
12+ - MYUSEMC=true MYPYTHON_VERSION=3.9
13+ - MYUSEMC=true MYPYTHON_VERSION=3.10
1314 - MYUSEMC=false
1415
1516git :
Original file line number Diff line number Diff line change 11# Release notes
22
3- ## Unreleased - Version 3.0.2
3+ ## Version 3.1.0 – 2022-12-04
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+
19+ ## Version 3.0.2 - 2022-10-12
420
521### Added
622
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ user manual at http://diffpy.github.io/diffpy.structure.
2727REQUIREMENTS
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
3131the following software:
3232
3333* ``setuptools `` - software distribution tools for Python
Original file line number Diff line number Diff line change 204204# -- intersphinx configuration --------------------------------------------
205205
206206intersphinx_mapping = {
207- 'python' : ('https://docs.python.org/3.7 ' , None ),
207+ 'python' : ('https://docs.python.org/3.10 ' , None ),
208208 'numpy' : ('https://docs.scipy.org/doc/numpy' , None ),
209209}
210210
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.1.post0 '
15+ FALLBACK_VERSION = '3.1.0 '
1616
1717# determine if we run with Python 3.
1818PY3 = (sys .version_info [0 ] == 3 )
@@ -116,9 +116,10 @@ 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' ,
120+ 'Programming Language :: Python :: 3.8' ,
121+ 'Programming Language :: Python :: 3.9' ,
122+ 'Programming Language :: Python :: 3.10' ,
122123 'Topic :: Scientific/Engineering :: Chemistry' ,
123124 'Topic :: Scientific/Engineering :: Physics' ,
124125 ],
You can’t perform that action at this time.
0 commit comments