Skip to content

Commit

Permalink
reset toml numpy version back to 1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
stuchalk committed Dec 14, 2023
1 parent bb939cc commit d73ee13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11"]
allow_failure: [false]
include:
- python-version: "3.12"
allow_failure: true

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 2 additions & 5 deletions examples/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,7 @@ def create_scidata():
example.author([sjc])

# add description
description = (
'Determination of the pH of a 3 ppm cyanide solution ',
'after complete reaction'
)
description = 'Determination of the pH of a 3 ppm cyanide solution after complete reaction'
example.description(description)

# add publisher
Expand Down Expand Up @@ -308,7 +305,7 @@ def create_scidata():
'University of North Florida'
)
lic = 'https://creativecommons.org/licenses/by-nc-nd/4.0/'
example.rights(holder, lic)
example.rights([holder, lic])

packet = [{
"aspects":
Expand Down

0 comments on commit d73ee13

Please sign in to comment.