Skip to content

Commit

Permalink
Prepare for v0.8.0 release (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertodr authored Jul 22, 2022
1 parent d59e689 commit 1af13f2
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 34 deletions.
9 changes: 8 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

0.8.0_ (2022-07-21)
-------------------

* Upgrade to using `pyparsing`>=3.0


0.7.0_ (2020-08-31)
-------------------

Expand Down Expand Up @@ -100,7 +106,8 @@ History
* First release on PyPI.


.. _Unreleased: https://github.com/dev-cafe/parselglossy/compare/v0.7.0...HEAD
.. _Unreleased: https://github.com/dev-cafe/parselglossy/compare/v0.8.0...HEAD
.. _0.8.0: https://github.com/dev-cafe/parselglossy/releases/tag/v0.8.0
.. _0.7.0: https://github.com/dev-cafe/parselglossy/releases/tag/v0.7.0
.. _0.6.0: https://github.com/dev-cafe/parselglossy/releases/tag/v0.6.0
.. _0.5.0: https://github.com/dev-cafe/parselglossy/releases/tag/v0.5.0
Expand Down
60 changes: 43 additions & 17 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 13 additions & 15 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
flake = false;
};
mach-nix = {
url = "mach-nix/3.5.0";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
url = "mach-nix/3.4.0";
inputs.pypi-deps-db.follows = "pypi-deps-db";
};
};
Expand All @@ -26,20 +24,20 @@
pyyaml
networkx
coverage
#hypothesis
#pre-commit
hypothesis
pre-commit
pytest
#pytest-black
#pytest-cov
#pytest-flake8
#pytest-mypy
#pytest-sugar
#black==22.3.0 # NOTE We pin black to avoid inconsistent formatting (and failing CI)
#flake8
#mypy
#jupyterlab
pytest-black
pytest-cov
pytest-flake8
pytest-mypy
pytest-sugar
black==22.3.0 # NOTE We pin black to avoid inconsistent formatting (and failing CI)
flake8
mypy
jupyterlab
flit_core
'';
'' + builtins.readFile ./docs/requirements.txt;
};
in
{
Expand Down
2 changes: 1 addition & 1 deletion parselglossy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

__author__ = """Roberto Di Remigio, Radovan Bast"""
__email__ = "roberto.diremigio@gmail.com"
__version__ = "0.7.0"
__version__ = "0.8.0"
__copyright__ = "Copyright 2019, dev-cafe"
__credits__ = [
"Jonas Juselius",
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[bdist_wheel]
universal = 1

[metadata]
version = attr: parselglossy.__version__

[flake8]
exclude =
.git,
Expand Down

0 comments on commit 1af13f2

Please sign in to comment.