Skip to content

Commit 2f5f1aa

Browse files
authored
Merge pull request #23 from clembou/fix/prepare-release
Remove upper bound restriction on pandas and numpy + changelog for v0.5.0
2 parents a05bf1e + 7c9995a commit 2f5f1aa

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
88

9+
## [0.5.0] - 2023-02-09
10+
### Changed
11+
- add explicit support for python 3.8, 3.9, 1.10 (#22)
12+
- drop support for python 3.5 (#22)
13+
- switch to Github Actions instead of Travis for CI (#22)
14+
- add support for pandas 1.5 and numpy 1.24 (#20) - thanks @lkacenja!
15+
916
## [0.4.0] - 2020-02-10
1017
### Changed
1118
- add explicit support for python 3.7 (#11)
@@ -33,7 +40,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3340
### Added
3441
- First release 🎉
3542

36-
[Unreleased]: https://github.com/clembou/behave-pandas/compare/v0.4.0...HEAD
43+
[Unreleased]: https://github.com/clembou/behave-pandas/compare/v0.5.0...HEAD
44+
[0.5.0]: https://github.com/clembou/behave-pandas/commit/v0.4.0...v0.5.0
3745
[0.4.0]: https://github.com/clembou/behave-pandas/commit/v0.3.0...v0.4.0
3846
[0.3.0]: https://github.com/clembou/behave-pandas/commit/v0.2.0...v0.3.0
3947
[0.2.0]: https://github.com/clembou/behave-pandas/commit/v0.1.0...v0.2.0

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
22
set -x
33

4-
rm -rf dist build
5-
python setup.py bdist_wheel
4+
rm -rf dist build behave_pandas.egg-info
5+
python -m build --wheel

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22

33
# dev dependencies
44
black; python_version >= '3.6.0'
5-
wheel
5+
wheel
6+
build

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
long_description=open("README.md", "r").read(),
1111
long_description_content_type="text/markdown",
1212
packages=setuptools.find_packages(),
13-
install_requires=["behave", "pandas>=0.21,<1.5", "tabulate", "numpy<1.24"],
13+
install_requires=["behave", "pandas>=0.21", "tabulate"],
1414
classifiers=[
1515
"Development Status :: 4 - Beta",
1616
"Programming Language :: Python",

0 commit comments

Comments
 (0)