Skip to content

Commit

Permalink
Merge pull request #19 from nschloe/version-bump
Browse files Browse the repository at this point in the history
Version bump
  • Loading branch information
nschloe authored Sep 29, 2020
2 parents 8bb3bc6 + a9a4c0c commit dac4fd4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# This should best be read from setup.{py,cfg}
VERSION="0.3.0"
VERSION=0.3.3

default:
@echo "\"make publish\"?"

# https://packaging.python.org/distributing/#id72
upload: setup.py
upload: clean
# Make sure we're on the master branch
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "master" ]; then exit 1; fi
rm -rf dist/*
Expand All @@ -26,7 +26,7 @@ clean:
@rm -rf *.egg-info/ build/ dist/ MANIFEST

format:
isort -rc .
isort .
black .

black:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def has_flag(compiler, flagname):
"""Return a boolean indicating whether a flag name is supported on
the specified compiler.
"""
import tempfile
import os
import tempfile

with tempfile.NamedTemporaryFile("w", suffix=".cpp", delete=False) as f:
f.write("int main (int argc, char **argv) { return 0; }")
Expand Down Expand Up @@ -91,7 +91,7 @@ def build_extensions(self):

setup(
name="accupy",
version="0.3.2",
version="0.3.3",
packages=find_packages(),
ext_modules=ext_modules,
url="https://github.com/nschloe/accupy",
Expand Down
2 changes: 1 addition & 1 deletion test/test_dot.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import matplotlib.pyplot as plt
import numpy
import perfplot
import pytest

import accupy
import perfplot


@pytest.mark.parametrize("cond", [1.0, 1.0e15])
Expand Down
2 changes: 1 addition & 1 deletion test/test_sums.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import matplotlib.pyplot as plt
import numpy
import perfplot
import pytest

import accupy
import perfplot


@pytest.mark.parametrize("cond", [1.0, 1.0e15])
Expand Down

0 comments on commit dac4fd4

Please sign in to comment.