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 b99257a commit c53baedCopy full SHA for c53baed
.appveyor.yml
@@ -17,9 +17,6 @@ environment:
17
- PYTHON_VERSION: 3.7
18
TARGET_ARCH: "x64"
19
MINICONDA: C:\Miniconda3-x64
20
- - PYTHON_VERSION: 3.6
21
- TARGET_ARCH: "x64"
22
- MINICONDA: C:\Miniconda3-x64
23
- PYTHON_VERSION: 3.10
24
TARGET_ARCH: "x86"
25
MINICONDA: C:\Miniconda3
@@ -32,9 +29,6 @@ environment:
32
29
33
30
34
31
35
36
- TARGET_ARCH: "x86"
37
- 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.7.0"
+__version__ = "0.8.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.1"],
+ install_requires=["dss_python==0.13.0"],
50
extras_require={
51
"extras": ["pandas", "matplotlib", "networkx"],
52
"dev": [
@@ -74,11 +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
- "Programming Language :: Python :: 3.6",
78
"Programming Language :: Python :: 3.7",
79
"Programming Language :: Python :: 3.8",
80
"Programming Language :: Python :: 3.9",
81
"Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
82
],
83
cmdclass={"develop": PostDevelopCommand},
84
)
0 commit comments