We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4dcd67 commit f4982d2Copy full SHA for f4982d2
.appveyor.yml
@@ -5,6 +5,9 @@ build: false
5
6
environment:
7
matrix:
8
+ - PYTHON_VERSION: 3.10
9
+ TARGET_ARCH: "x64"
10
+ MINICONDA: C:\Miniconda3-x64
11
- PYTHON_VERSION: 3.9
12
TARGET_ARCH: "x64"
13
MINICONDA: C:\Miniconda3-x64
@@ -17,9 +20,9 @@ environment:
17
20
- PYTHON_VERSION: 3.6
18
21
19
22
- - PYTHON_VERSION: 3.5
- TARGET_ARCH: "x64"
- MINICONDA: C:\Miniconda3-x64
23
24
+ TARGET_ARCH: "x86"
25
+ MINICONDA: C:\Miniconda3
26
27
TARGET_ARCH: "x86"
28
MINICONDA: C:\Miniconda3
@@ -32,9 +35,6 @@ environment:
32
35
33
36
34
37
- TARGET_ARCH: "x86"
- MINICONDA: C:\Miniconda3
38
39
install:
40
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
opendssdirect/_version.py
@@ -1,2 +1,2 @@
1
# -*- coding: utf-8 -*-
2
-__version__ = "0.6.1"
+__version__ = "0.7.0"
setup.py
@@ -46,7 +46,7 @@ def run(self):
46
author_email="[email protected]",
47
license="BSD-compatible",
48
packages=find_packages(),
49
- install_requires=["dss_python==0.12.0"],
+ install_requires=["dss_python==0.12.1"],
50
extras_require={
51
"extras": ["pandas", "matplotlib", "networkx"],
52
"dev": [
@@ -74,13 +74,11 @@ def run(self):
74
"Topic :: Software Development :: Build Tools",
75
# Pick your license as you wish (should match "license" above)
76
"License :: Other/Proprietary License",
77
- # Specify the Python versions you support here. In particular, ensure
78
- # that you indicate whether you support Python 2, Python 3 or both.
79
- "Programming Language :: Python :: 3.5",
80
"Programming Language :: Python :: 3.6",
81
"Programming Language :: Python :: 3.7",
82
"Programming Language :: Python :: 3.8",
83
"Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
84
],
85
cmdclass={"develop": PostDevelopCommand},
86
)
0 commit comments