Skip to content

Commit 31b0f3d

Browse files
authoredOct 21, 2021
Merge pull request #507 from neurodata/staging
v0.0.6
2 parents 894d259 + 634d4d1 commit 31b0f3d

File tree

73 files changed

+53979
-4695
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+53979
-4695
lines changed
 

‎.circleci/config.yml

+17-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
orbs:
4-
codecov: codecov/codecov@1.0.2
4+
codecov: codecov/codecov@3.1.1
55

66
jobs:
77
build:
@@ -34,6 +34,12 @@ jobs:
3434
parameters:
3535
module:
3636
type: string
37+
benchmarks:
38+
type: string
39+
experiments:
40+
type: string
41+
tutorials:
42+
type: string
3743
docker:
3844
- image: cimg/python:3.8
3945
steps:
@@ -56,6 +62,9 @@ jobs:
5662
command: |
5763
. venv/bin/activate
5864
black --check --diff ./<< parameters.module >>
65+
black --check --diff ./<< parameters.benchmarks >>
66+
black --check --diff ./<< parameters.experiments >>
67+
black --check --diff ./<< parameters.tutorials >>
5968
- run:
6069
name: run tests and coverage
6170
command: |
@@ -95,12 +104,12 @@ jobs:
95104
name: init .pypirc
96105
command: |
97106
echo -e "[pypi]" >> ~/.pypirc
98-
echo -e "username = $PYPI_USERNAME" >> ~/.pypirc
99-
echo -e "password = $PYPI_PASSWORD" >> ~/.pypirc
107+
echo -e "username = __token__" >> ~/.pypirc
108+
echo -e "password = $PIP_TOKEN" >> ~/.pypirc
100109
- run:
101110
name: create packages
102111
command: |
103-
python setup.py sdist
112+
python setup.py sdist bdist_wheel
104113
- run:
105114
name: upload to pypi
106115
command: |
@@ -121,13 +130,14 @@ workflows:
121130
- test-module:
122131
name: "proglearn"
123132
module: "proglearn"
133+
benchmarks: "benchmarks/"
134+
experiments: "docs/experiments/"
135+
tutorials: "docs/tutorials/"
124136
requires:
125137
- "v3.8"
126138
- deploy:
127-
requires:
128-
- "proglearn"
129139
filters:
130140
tags:
131-
only: /[0-9]+(\.[0-9]+)*/
141+
only: /v[0-9]+(\.[0-9]+)*/
132142
branches:
133143
ignore: /.*/

‎.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Bug Report
33
about: Create a report to help us improve ProgLearn
4-
label: bug
4+
label:
55

66
---
77

0 commit comments

Comments
 (0)