File tree 5 files changed +26
-8
lines changed
5 files changed +26
-8
lines changed Original file line number Diff line number Diff line change 7
7
8
8
env :
9
9
- MYUSEMC=true MYPYTHON_VERSION=2.7
10
- - MYUSEMC=true MYPYTHON_VERSION=3.5
11
- - MYUSEMC=true MYPYTHON_VERSION=3.6
12
10
- 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
13
14
- MYUSEMC=false
14
15
15
16
git :
Original file line number Diff line number Diff line change 1
1
# Release notes
2
2
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
4
20
5
21
### Added
6
22
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ user manual at http://diffpy.github.io/diffpy.structure.
27
27
REQUIREMENTS
28
28
------------------------------------------------------------------------
29
29
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
31
31
the following software:
32
32
33
33
* ``setuptools `` - software distribution tools for Python
Original file line number Diff line number Diff line change 204
204
# -- intersphinx configuration --------------------------------------------
205
205
206
206
intersphinx_mapping = {
207
- 'python' : ('https://docs.python.org/3.7 ' , None ),
207
+ 'python' : ('https://docs.python.org/3.10 ' , None ),
208
208
'numpy' : ('https://docs.scipy.org/doc/numpy' , None ),
209
209
}
210
210
Original file line number Diff line number Diff line change 12
12
13
13
# Use this version when git data are not available, like in git zip archive.
14
14
# Update when tagging a new release.
15
- FALLBACK_VERSION = '3.0.1.post0 '
15
+ FALLBACK_VERSION = '3.1.0 '
16
16
17
17
# determine if we run with Python 3.
18
18
PY3 = (sys .version_info [0 ] == 3 )
@@ -116,9 +116,10 @@ def getversioncfg():
116
116
'Operating System :: POSIX' ,
117
117
'Operating System :: Unix' ,
118
118
'Programming Language :: Python :: 2.7' ,
119
- 'Programming Language :: Python :: 3.5' ,
120
- 'Programming Language :: Python :: 3.6' ,
121
119
'Programming Language :: Python :: 3.7' ,
120
+ 'Programming Language :: Python :: 3.8' ,
121
+ 'Programming Language :: Python :: 3.9' ,
122
+ 'Programming Language :: Python :: 3.10' ,
122
123
'Topic :: Scientific/Engineering :: Chemistry' ,
123
124
'Topic :: Scientific/Engineering :: Physics' ,
124
125
],
You can’t perform that action at this time.
0 commit comments