Skip to content

Commit f4982d2

Browse files
committed
Update AppVeyor, use dss_python==0.12.1, increment version to 0.7.0
1 parent e4dcd67 commit f4982d2

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.appveyor.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ build: false
55

66
environment:
77
matrix:
8+
- PYTHON_VERSION: 3.10
9+
TARGET_ARCH: "x64"
10+
MINICONDA: C:\Miniconda3-x64
811
- PYTHON_VERSION: 3.9
912
TARGET_ARCH: "x64"
1013
MINICONDA: C:\Miniconda3-x64
@@ -17,9 +20,9 @@ environment:
1720
- PYTHON_VERSION: 3.6
1821
TARGET_ARCH: "x64"
1922
MINICONDA: C:\Miniconda3-x64
20-
- PYTHON_VERSION: 3.5
21-
TARGET_ARCH: "x64"
22-
MINICONDA: C:\Miniconda3-x64
23+
- PYTHON_VERSION: 3.10
24+
TARGET_ARCH: "x86"
25+
MINICONDA: C:\Miniconda3
2326
- PYTHON_VERSION: 3.9
2427
TARGET_ARCH: "x86"
2528
MINICONDA: C:\Miniconda3
@@ -32,9 +35,6 @@ environment:
3235
- PYTHON_VERSION: 3.6
3336
TARGET_ARCH: "x86"
3437
MINICONDA: C:\Miniconda3
35-
- PYTHON_VERSION: 3.5
36-
TARGET_ARCH: "x86"
37-
MINICONDA: C:\Miniconda3
3838

3939
install:
4040
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"

opendssdirect/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = "0.6.1"
2+
__version__ = "0.7.0"

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def run(self):
4646
author_email="[email protected]",
4747
license="BSD-compatible",
4848
packages=find_packages(),
49-
install_requires=["dss_python==0.12.0"],
49+
install_requires=["dss_python==0.12.1"],
5050
extras_require={
5151
"extras": ["pandas", "matplotlib", "networkx"],
5252
"dev": [
@@ -74,13 +74,11 @@ def run(self):
7474
"Topic :: Software Development :: Build Tools",
7575
# Pick your license as you wish (should match "license" above)
7676
"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",
8077
"Programming Language :: Python :: 3.6",
8178
"Programming Language :: Python :: 3.7",
8279
"Programming Language :: Python :: 3.8",
8380
"Programming Language :: Python :: 3.9",
81+
"Programming Language :: Python :: 3.10",
8482
],
8583
cmdclass={"develop": PostDevelopCommand},
8684
)

0 commit comments

Comments
 (0)