Skip to content

Commit

Permalink
1. bump version
Browse files Browse the repository at this point in the history
2. deprecate macos
  • Loading branch information
Kuree committed Feb 12, 2024
1 parent 51f441d commit 74206c9
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 72 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/deploy-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,12 @@ jobs:
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: keyi
password: ${{ secrets.PYPI_API_LIBHGDB_TOKEN }}
skip_existing: true
packages_dir: wheelhouse/
skip-existing: true
packages-dir: wheelhouse/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: keyi
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true
packages_dir: bindings/python/wheelhouse/*
skip-existing: true
packages-dir: bindings/python/wheelhouse/
44 changes: 0 additions & 44 deletions .github/workflows/deploy-macos.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,3 @@ jobs:
with:
name: libhgdb
path: build/src/libhgdb.so
- name: Build wheel
if: startsWith(github.ref, 'refs/tags')
shell: bash
run: |
pip3 install wheel==0.37.0 wheeltools
python3 setup.py bdist_wheel
mkdir -p wheelhouse
python3 scripts/fix_wheel.py dist/*.whl -w wheelhouse
env:
CC: gcc-10
CXX: g++-10
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: keyi
password: ${{ secrets.PYPI_API_LIBHGDB_TOKEN }}
skip_existing: true
packages_dir: wheelhouse/
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### [0.1.4] - 2024-2-11
### Added
- Add python3.11 support

## [0.1.3] - 2022-12-09
### Added
- Add wrapper scripts to support different EDA tools:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.3
0.1.4
File renamed without changes.
3 changes: 1 addition & 2 deletions bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def build_extension(self, ext):


current_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_directory, 'README.rst')) as f:
with open(os.path.join(current_directory, 'README.md')) as f:
long_description = f.read()
root = os.path.dirname(os.path.dirname(current_directory))
with open(os.path.join(root, "VERSION")) as f:
Expand All @@ -100,7 +100,6 @@ def build_extension(self, ext):
author='Keyi Zhang',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/x-rst',
packages=['hgdb'],
url="https://github.com/Kuree/hgdb",
scripts=["scripts/toml2hgdb"],
Expand Down

0 comments on commit 74206c9

Please sign in to comment.