Skip to content

Commit

Permalink
Update for v0.0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
JWock82 committed Oct 17, 2022
1 parent 329161f commit 0a17b59
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 41 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/build-and-test.yml

This file was deleted.

9 changes: 4 additions & 5 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
name: Upload Python Package

on:
[push]
# release:
# types: [created]
release:
types: [created]

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
Expand Down
16 changes: 9 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ipycalc",
version="0.0.18",
version="0.0.19",
author="D. Craig Brinck, PE, SE",
author_email="[email protected]",
description="Clean looking engineering calculations for IPython",
Expand All @@ -18,10 +18,12 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],

# entry_points={
# 'nbconvert.exporters': [
# 'ipycalc = ipycalc.exporter:ipycalcExporter',
# ]
#}
install_requires=[
'IPython',
],
entry_points={
'nbconvert.exporters': [
'ipycalc = ipycalc.exporter:ipycalcExporter',
]
}
)

0 comments on commit 0a17b59

Please sign in to comment.