Skip to content

Commit

Permalink
Merge pull request #18 from jarrodmillman/appveyor
Browse files Browse the repository at this point in the history
Add Appveyor CI
  • Loading branch information
jarrodmillman committed Apr 1, 2018
2 parents 1dab674 + 5d8dca8 commit 3709d82
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
38 changes: 38 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# AppVeyor is a CI service to build and run tests under Windows
# https://ci.appveyor.com/project/networkx/grave

environment:

matrix:
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.3"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.3"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.4"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.4"
PYTHON_ARCH: "64"

install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

# Check that we have the expected version and architecture for Python
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""

# Install the build and runtime dependencies of the project.
- "pip install -r requirements.txt"
- "pip install ."

build: false

test_script:
- "pushd %TEMP%"
- "pytest --pyargs grave"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from setuptools import setup
from setuptools import find_packages

setup(name = "Grave",
version = "0.0.1",
setup(name = "grave",
version = "0.1",
description = "Dead simple graph visualization",
long_description = "Grave is a Graph Visualization Package "\
"combining ideas from Matplotlib and NetworkX",
Expand Down

0 comments on commit 3709d82

Please sign in to comment.