Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.7.0 #40

Merged
merged 9 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.11]
python-version: ["3.8", "3.12"]
os: [ubuntu-latest]

steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,4 @@ Thumbs.db
docs/autodoc_build
dist/
ubiquerg.egg-info/
build/
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.

## [0.7.0] - 2024-01-02

### Added
- Experimental support for three-locking.

## [0.6.3] - 2023-08-08
### Fixed
- Incorrect read of registry path. [Issue 35](https://github.com/pepkit/ubiquerg/issues/35)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ def read_reqs(reqs_name):
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
keywords="utility, utilities, tools",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def _generate_too_few_items(minsize, maxsize, pool):
if not (isinstance(minsize, int) and isinstance(maxsize, int)):
raise TypeError("Size bounds must be integers; got {}".format(print_bound()))
if maxsize < minsize:
raise ValueError("Nonesense size bounds: {}".format(print_bound()))
raise ValueError("Nonsense size bounds: {}".format(print_bound()))
n = random.randint(minsize, maxsize)
return n, random.sample(pool, max(n - 1, 0))

Expand Down
1 change: 1 addition & 0 deletions ubiquerg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from .collection import *
from .environment import *
from .files import *
from .file_locking import *
from .paths import *
from .system import *
from .web import *
Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.3"
__version__ = "0.7.0"
Loading
Loading