Skip to content

Commit

Permalink
Merge branch 'main' into v2023.11.0-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs authored Nov 24, 2023
2 parents aa95c2a + 8a7b315 commit 4ab14f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ++version.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
new_setup = ""
with open("pyproject.toml") as f:
for line in f:
if 'version ="' in line:
if 'version = "' in line:
new_setup += f'version = "{new_version_str}"\n'
else:
new_setup += line
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/push-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: "3.12"
- name: Build a binary wheel and a source tarball
- name: Build a wheel
run: |
pip install wheel
python setup.py bdist_wheel
python setup.py sdist --formats=gztar
python3 -m pip install build
python3 -m build .
- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]

[project]
name = "symfem"
version = "2023.8.2"
version = "2023.11.0"
description = "a symbolic finite element definition library"
readme = "README.md"
requires-python = ">=3.8.0"
Expand Down

0 comments on commit 4ab14f8

Please sign in to comment.