Skip to content

Commit e88c7f6

Browse files
authored
Merge pull request #64 from Open-MSS/merge_stable_to_develop
Merge stable to develop
2 parents 85751bc + badebbf commit e88c7f6

File tree

6 files changed

+28
-7
lines changed

6 files changed

+28
-7
lines changed

.readthedocs.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Set the version of Python and other tools you might need
9+
build:
10+
os: ubuntu-22.04
11+
tools:
12+
python: "3.11"
13+
14+
# Build documentation in the docs/ directory with Sphinx
15+
sphinx:
16+
configuration: docs/conf.py
17+
18+
# We recommend specifying your dependencies to enable reproducible builds:
19+
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
20+
python:
21+
install:
22+
- requirements: docs/requirements.txt

docs/requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
sphinx
2+
sphinx_rtd_theme
3+
readthedocs-sphinx-search
4+
readthedocs-sphinx-ext

fslib/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323
See the License for the specific language governing permissions and
2424
limitations under the License.
2525
"""
26-
__version__ = "0.3.8"
26+
__version__ = "0.3.9"

localbuild/meta.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ requirements:
2121
- pip
2222
- python <3.11.0
2323
- setuptools
24-
- future
2524

2625
run:
2726
- python <3.11.0
@@ -31,7 +30,6 @@ requirements:
3130
- fs
3231
- fs.webdavfs
3332
- fs.sshfs
34-
- future
3533

3634
test:
3735
imports:

meta.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ requirements:
2222
build:
2323
- python
2424
- setuptools
25-
- future
2625

2726
run:
2827
- python
@@ -31,7 +30,6 @@ requirements:
3130
- fs
3231
- fs.webdavfs
3332
- fs.sshfs
34-
- future
3533

3634
test:
3735
imports:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,14 @@
4343
author="Reimar Bauer",
4444
author_email="[email protected]",
4545
license="Apache 2.0",
46-
url="https://github.com/ReimarBauer/fs_filepicker",
46+
url="https://github.com/Open-MSS/fs_filepicker",
4747
platforms="any",
4848
packages=find_packages(),
4949
namespace_packages=[],
5050
include_package_data=True,
5151
zip_safe=False,
5252
install_requires=[
5353
"fs==2.4.16",
54-
"future==0.18.3",
5554
"humanfriendly==10.0",
5655
], # we use conda build recipe
5756
entry_points={

0 commit comments

Comments
 (0)