Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit d3662c5

Browse files
committed
update dependencies
1 parent f4dc5c6 commit d3662c5

File tree

7 files changed

+154
-86
lines changed

7 files changed

+154
-86
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ MANIFEST
3333
curl.sh
3434
.python-version
3535
.mypy_cache/
36+
venv

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog for elabapy
22

3+
## Version 1.1.0
4+
5+
* Update dependencies
6+
37
## Version 1.0.0
48

59
* Update dependencies.

Pipfile.lock

Lines changed: 135 additions & 73 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ This library works with eLabFTW's API v1. It is recommended to use API v2. A pyt
1313

1414
### APIv2 Python lib: https://github.com/elabftw/elabapi-python/
1515

16+
# WARNING: DEPRECATED LIBRARY
17+
18+
Because this package is for APIv1 and APIv1 is deprecated from eLab, this library is therefore also deprecated and should not be used.
19+
1620
## Install
1721

1822
You can install elabapy using **pip**:
@@ -82,3 +86,7 @@ Use `verify=False` in the Manager initialization to disable TLS certificate veri
8286
* Create release on GitHub
8387

8488
A GitHub Action will take care of publishing it to Pypi.org.
89+
90+
### Update requirements.txt
91+
92+
`pipenv requirements > requirements.txt`

elabapy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""A python module to interact with elabftw API"""
33

4-
__version__ = "1.0.0"
4+
__version__ = "1.1.0"
55
__author__ = "Nicolas CARPi"
66
__author_email__ = "[email protected]"
77
__license__ = "GPL v3"

requirements.txt

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
1-
#
2-
# These requirements were autogenerated by pipenv
3-
# To regenerate from the project's Pipfile, run:
4-
#
5-
# pipenv lock --requirements
6-
#
7-
81
-i https://pypi.org/simple
9-
certifi==2022.12.7; python_version >= '3.6'
10-
charset-normalizer==2.1.1; python_version >= '3.6'
2+
certifi==2023.7.22; python_version >= '3.6'
3+
charset-normalizer==3.2.0; python_full_version >= '3.7.0'
114
idna==3.4; python_version >= '3.5'
12-
requests==2.28.1
13-
urllib3==1.26.13; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'
5+
requests==2.31.0
6+
urllib3==2.0.4; python_version >= '3.7'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='elabapy',
8-
version='1.0.0',
8+
version='1.1.0',
99
description='elabftw API to manage experiments and items',
1010
author='Nicolas CARPi',
1111
author_email='[email protected]',

0 commit comments

Comments
 (0)