Skip to content

Commit

Permalink
Release v0.9.37
Browse files Browse the repository at this point in the history
  • Loading branch information
heitzmann committed Feb 12, 2023
1 parent 724adc2 commit 1c50627
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## 0.9.37 - 2023002-12
### Changed
- Build system changes for lower numpy version requirements

## 0.9.36 - 2023-02-10
### Changed
- Downgrade the zlib version dependency to support manylinux2014
Expand Down
38 changes: 17 additions & 21 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,33 +1,29 @@
default: module

help:
@echo 'make install: Install package, hook, notebooks and gdslib'
@echo 'make test: Run tests with pytest'
@echo 'make test-force: Rebuilds regression test'
@echo 'make library: Build C++ library in build/'
@echo 'make module: Build python library'
@echo 'make test: Run tests with pytest'

library:
cmake -S . -B build
cmake --build build

module:
python setup.py build

clean:
-rm -r build

install:
pip install -r requirements.txt
pip install -r requirements_dev.txt
pip install -e .
pre-commit install
#pre-commit install

test:
flake8 python
pytest -s

lint:
flake8 python

pylint:
pylint

git-rm-merged:
git branch -D `git branch --merged | grep -v \* | xargs`

release:
git push
git push origin --tags

spell:
codespell -i 3 -w -L TE,TE/TM,te,ba,FPR,fpr_spacing
pytest

docs:
python docs/cell_images.py
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GDSTK 0.9.36
# GDSTK 0.9.37

[![Boost Software License - Version 1.0](https://img.shields.io/github/license/heitzmann/gdstk.svg)](https://www.boost.org/LICENSE_1_0.txt)
[![Tests Runner](https://github.com/heitzmann/gdstk/workflows/Tests%20Runner/badge.svg)](https://github.com/heitzmann/gdstk/actions)
Expand Down
2 changes: 1 addition & 1 deletion src/gdstk.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LICENSE file or <http://www.boost.org/LICENSE_1_0.txt>
#define __STDC_FORMAT_MACROS
#define _USE_MATH_DEFINES

#define GDSTK_VERSION "0.9.36"
#define GDSTK_VERSION "0.9.37"

// If GDSTK_CUSTOM_ALLOCATOR is defined, the user must supply implementations
// for the following dynamic memory management functions:
Expand Down

0 comments on commit 1c50627

Please sign in to comment.