Skip to content

Commit b0bccb3

Browse files
committed
Build OS specific versions
1 parent bdd8f9a commit b0bccb3

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/conda-package-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
fail-fast: false
1515
max-parallel: 3
1616
matrix:
17-
os: [ macos-latest, windows-latest]
18-
python-minor-version: [7]
17+
os: [ macos-latest, windows-latest, linux-latest]
18+
python-minor-version: [7, 8, 9]
1919
isMaster:
2020
- ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/dev') }}
2121
exclude:

.travis.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ source:
88
path: ..
99

1010
build:
11-
noarch: python [unix]
11+
#noarch: python [unix]
1212
preserve_egg_dir: True
13-
number: 4
13+
number: 0
1414
script: {{PYTHON}} setup.py install
1515
entry:
1616
- cyml = pycropml.main:main

src/pycropml/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
MINOR = 2
1212
"""(int) Version minor component."""
1313

14-
POST = 5
14+
POST = 6
1515
"""(int) Version post or bugfix component."""
1616

1717
__version__ = ".".join([str(s) for s in (MAJOR, MINOR, POST)])

0 commit comments

Comments
 (0)