Skip to content

Commit

Permalink
Merge pull request #418 from mggg/v0.3.0
Browse files Browse the repository at this point in the history
v0.3.0
  • Loading branch information
peterrrock2 committed Feb 2, 2024
2 parents 627e6c6 + ea56d4e commit 314f414
Show file tree
Hide file tree
Showing 105 changed files with 706,202 additions and 8,587 deletions.
18 changes: 13 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
version: 2
version: 2.1

jobs:
test:
parameters:
python-version:
type: string
docker:
- image: python:3.8
- image: cimg/python:<< parameters.python-version >>
working_directory: ~/repo
steps:
- checkout
Expand Down Expand Up @@ -39,6 +42,8 @@ jobs:
echo "backend: Agg" > "matplotlibrc"
pytest -v --runslow --cov=gerrychain --junitxml=test-reports/junit.xml tests
codecov
no_output_timeout: 40m
environment:
PYTHONHASHSEED: "0"
- store_test_results:
Expand All @@ -48,7 +53,7 @@ jobs:

deploy:
docker:
- image: python:3.8
- image: python:3.9
working_directory: ~/repo
steps:
- checkout
Expand All @@ -74,10 +79,13 @@ jobs:
twine upload dist/*
workflows:
version: 2
version: 2.1
test_and_deploy:
jobs:
- test
- test:
matrix:
parameters:
python-version: ["3.9", "3.10", "3.11"]
- deploy:
requires:
- test
Expand Down
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ target/

# pyenv python configuration file
.python-version

.venv
junit.xml

# crapple
Expand All @@ -74,4 +74,7 @@ junit.xml

# Pytest cache
.pytest_cache/
Dockerfile
Dockerfile

# Extra Documentation Stuff
release_notes.md
Binary file renamed docs/user/PA_VTDs.json → docs/_static/MN.zip
Binary file not shown.
Loading

0 comments on commit 314f414

Please sign in to comment.