Skip to content

Commit

Permalink
Merge pull request #41 from dvklopfenstein/dvk
Browse files Browse the repository at this point in the history
v0.0.37 Removed package in setup which is not implemented
  • Loading branch information
dvklopfenstein authored Sep 27, 2022
2 parents 84e2635 + cd1fe63 commit 5883f08
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Summary

* [**Unreleased**](#unreleased)
* [**Release 2022-09-27 v0.0.37**](#release-2022-09-27-v0037) Remove unused package in setup.py
* [**Release 2022-07-03 v0.0.36**](#release-2022-07-03-v0036) Change citation count on GitHub repo card
* [**Release 2022-04-28 v0.0.35**](#release-2022-04-28-v0035) More detailed GitHub repo card (project summary image)
* [**Release 2022-04-19 v0.0.33**](#release-2022-04-19-v0033) Turbocharge your literature search
Expand Down Expand Up @@ -38,8 +39,11 @@

### Unreleased

### Release 2022-07-03 v0.0.36
CHANGED: Updated citation count on GitHub repo card after today's discussions
### release 2022-09-03 v0.0.37
FIXED: Remove unused package in setup.py (pmidcite.eutils.pubmed.mesh)

### release 2022-07-03 v0.0.36
changed: updated citation count on github repo card after today's discussions

### Release 2022-04-28 v0.0.35
UPDATED: More detailed GitHub repo card (pmidcite_summary.png -> pmidcite_citedby.png)
Expand Down
5 changes: 5 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ vim_md:
# 2) Create wheel - Check PyPi packages are up-to-date: make upgrade
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#packaging-your-project
# universal wheels are pure Python
# Needs wheel package to run bdist_wheel: pip3 install wheel
.PHONY: build
build:
# python3 -m pip install --user --upgrade setuptools wheel
Expand All @@ -71,7 +72,11 @@ upgrade:
clean_dist:
rm -rf dist build

pyc:
find . -name __pycache__ -type d | xargs rm -rf

clean:
make pyc
rm -f notebooks/pubmed_20050301.txt
rm -f pubmed_20050301.txt
rm -f 29129787.txt
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
'pmidcite.eutils.cmds',
'pmidcite.eutils.pubmed',
'pmidcite.eutils.pubmed.counts',
'pmidcite.eutils.pubmed.mesh',
'pmidcite.icite',
'pmidcite.icite.dnldr',
'pmidcite.plot',
Expand All @@ -39,7 +38,7 @@ def get_long_description():
setup(
name=NAME,
## version=versioneer.get_version(),
version='0.0.36',
version='0.0.37',
author='DV Klopfenstein',
author_email='[email protected]',
## cmdclass=versioneer.get_cmdclass(),
Expand Down
2 changes: 1 addition & 1 deletion src/pmidcite/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version of pmidcite project"""

__version__ = '0.0.36'
__version__ = '0.0.37'

0 comments on commit 5883f08

Please sign in to comment.