Skip to content

Commit

Permalink
Add Python 3.8 into test env (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
TsumiNa committed Mar 15, 2021
1 parent fe6a906 commit 4f905fe
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Check conda env
shell: bash -l {0}
run: .github/workflows/check_env.sh
run: .github/config/check_env.sh

- name: Build a binary wheel and a source tarball
shell: bash -l {0}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- "licenses/**"
- "hooks/**"
- ".**"
- "!.github/**"
- "**.md"
- "**.yml"
- "**.txt"
Expand All @@ -28,6 +29,7 @@ on:
- "licenses/**"
- "hooks/**"
- ".**"
- "!.github/**"
- "**.md"
- "**.yml"
- "**.txt"
Expand All @@ -42,9 +44,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 4
max-parallel: 6
matrix:
python-version: [3.6, 3.7]
python-version: [3.6, 3.7, 3.8]
os: ["macos-11.0", "macos-10.15"]

steps:
Expand All @@ -64,7 +66,7 @@ jobs:

- name: Check conda env
shell: bash -l {0}
run: .github/workflows/check_env.sh
run: .github/config/check_env.sh

- name: Install XenonPy
shell: bash -l {0}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- "licenses/**"
- "hooks/**"
- ".**"
- "!.github/**"
- "**.md"
- "**.yml"
- "**.txt"
Expand All @@ -28,6 +29,7 @@ on:
- "licenses/**"
- "hooks/**"
- ".**"
- "!.github/**"
- "**.md"
- "**.yml"
- "**.txt"
Expand All @@ -42,9 +44,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 4
max-parallel: 6
matrix:
python-version: [3.6, 3.7]
python-version: [3.6, 3.7, 3.8]
os: ["ubuntu-18.04", "ubuntu-latest"]

steps:
Expand All @@ -64,7 +66,7 @@ jobs:

- name: Check conda env
shell: bash -l {0}
run: .github/workflows/check_env.sh
run: .github/config/check_env.sh

- name: Install XenonPy
shell: bash -l {0}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- "licenses/**"
- "hooks/**"
- ".**"
- "!.github/**"
- "**.md"
- "**.yml"
- "**.txt"
Expand All @@ -28,6 +29,7 @@ on:
- "licenses/**"
- "hooks/**"
- ".**"
- "!.github/**"
- "**.md"
- "**.yml"
- "**.txt"
Expand All @@ -42,9 +44,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 2
max-parallel: 3
matrix:
python-version: [3.6, 3.7]
python-version: [3.6, 3.7, 3.8]
os: ["windows-latest"]

steps:
Expand All @@ -64,7 +66,7 @@ jobs:

- name: Check conda env
shell: bash -l {0}
run: .github/workflows/check_env.sh
run: .github/config/check_env.sh

- name: Install XenonPy
shell: bash -l {0}
Expand Down
2 changes: 1 addition & 1 deletion xenonpy/conf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# package info
###############
name: "xenonpy"
version: "0.5.1"
version: "0.6.0.dev"
db_version: "0.1.3"
release: ""
short_description: "material descriptor library"
Expand Down

0 comments on commit 4f905fe

Please sign in to comment.