Skip to content

Commit

Permalink
push documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-saydjari committed Jan 15, 2022
1 parent f496643 commit 62411af
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Documentation

on: [workflow_dispatch] #, push, pull_request]
on: [workflow_dispatch, push] #, push, pull_request]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/UnitTest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Unit test

on: [workflow_dispatch,] # push, pull_request]
on: [workflow_dispatch, push] # , pull_request]

jobs:
test:
Expand Down
3 changes: 0 additions & 3 deletions src/decam.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ function for obtaining the position dependent psf to the python namespace.
"""
function __init__()
if !haskey(Conda._installed_packages_dict(),"crowdsourcephoto")
@static if Sys.iswindows()
Conda.add("nomkl",channel="conda-forge")
end
Conda.add("crowdsourcephoto",channel="conda-forge")
end
decam_dir = dirname(@__FILE__)*"/decam_dir"
Expand Down

2 comments on commit 62411af

@andrew-saydjari
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/52482

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.1 -m "<description of version>" 62411af908fadd13f92c5b018a56a380e9587c1a
git push origin v0.9.1

Also, note the warning: This looks like a new registration that registers version 0.9.1.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.